﻿/* ============================================================
   ParanhanaNet Landing Page – style.css
   ============================================================ */

/* ──────────────────────────────────────────────────────────
   1. CSS Variables & Reset
   ────────────────────────────────────────────────────────── */
:root {
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  --orange-500: #f97316;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --white: #ffffff;
  --black: #000000;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --muted: #6b7280;

  /* Plan theme colors */
  --laranja-from: #fb923c;
  --laranja-to:   #f97316;
  --marrom-from:  #92400e;
  --marrom-to:    #78350f;
  --marfim-from:  #fdba74;
  --marfim-to:    #fb923c;
  --cinza-from:   #6b7280;
  --cinza-to:     #4b5563;
  --bordo-from:   #991b1b;
  --bordo-to:     #7f1d1d;
  --neon-from:    #a855f7;
  --neon-to:      #9333ea;
  --dourado-from: #f59e0b;
  --dourado-to:   #eab308;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ──────────────────────────────────────────────────────────
   2. Utility
   ────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.section-header { text-align: center; margin-bottom: 2rem; }

/* ──────────────────────────────────────────────────────────
   3. Animations
   ────────────────────────────────────────────────────────── */
@keyframes ping  { 75%,100% { transform: scale(2);   opacity: 0; } }
@keyframes pulse { 0%,100%  { opacity: 1; } 50% { opacity: .5; } }
@keyframes fadeInUp  { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight{ from { opacity: 0; transform: translateX( 30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes zoomIn    { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.animate-on-scroll.fade-left  { transform: translateX(-30px); }
.animate-on-scroll.fade-right { transform: translateX( 30px); }
.animate-on-scroll.zoom-in    { transform: scale(.92); }
.animate-on-scroll.visible    { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }
.delay-6 { transition-delay: .6s; }

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ──────────────────────────────────────────────────────────
   4. WhatsApp Floating Button
   ────────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 9999;
}
.whatsapp-btn {
  display: flex; align-items: center; justify-content: flex-end;
  position: relative; cursor: pointer;
}
.whatsapp-ping,
.whatsapp-pulse {
  position: absolute; inset: 0;
  width: 5rem; height: 5rem;
  border-radius: 50%;
  background: #4ade80;
}
.whatsapp-ping  { animation: ping  2s cubic-bezier(0,0,.2,1) infinite; opacity: .3; }
.whatsapp-pulse { animation: pulse 2s ease infinite;  opacity: .2; }
.whatsapp-hover-text {
  position: absolute; right: 5.5rem; top: 50%; transform: translateY(-50%);
  background: var(--green-500); color: var(--white);
  font-weight: 700; font-size: .875rem; white-space: nowrap;
  padding: .75rem 2.5rem .75rem 1.25rem;
  border-radius: 9999px 0 0 9999px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  margin-right: -1px;
}
.whatsapp-btn:hover .whatsapp-hover-text { opacity: 1; pointer-events: auto; }
.whatsapp-icon-wrap {
  position: relative; z-index: 1;
  width: 5rem; height: 5rem;
  background: var(--green-500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(34,197,94,.4);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.whatsapp-btn:hover .whatsapp-icon-wrap {
  transform: scale(1.1);
  background: var(--green-600);
  box-shadow: 0 15px 35px rgba(34,197,94,.5);
}
.whatsapp-icon-wrap svg { width: 2rem; height: 2rem; }

/* WhatsApp image icon – tamanhos por contexto */
.wa-icon { width: 1.5rem; height: 1.5rem; object-fit: contain; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.wa-icon--float { width: 2.5rem; height: 2.5rem; }
.plan-wa-btn .wa-icon { width: 1.75rem; height: 1.75rem; }
.plan-cta-btn .wa-icon { width: 1.5rem; height: 1.5rem; }
.faq-wa-btn .wa-icon { width: 1.5rem; height: 1.5rem; }
.indique-cta .wa-icon { width: 1.5rem; height: 1.5rem; }
.why-contact-link .wa-icon { width: 1.25rem; height: 1.25rem; }

/* ──────────────────────────────────────────────────────────
   5. Hero Section
   ────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; overflow: hidden;
  background: url('images/parobe-DeV3rF95.jpg') center -50px / cover no-repeat;
}
@media (min-width: 1024px) {
  .hero-section {
    background-image: url('images/cidade-UZu92ngG.jpg');
  }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(30,64,175,.82);
  z-index: 0;
}
.hero-content {
  position: relative; z-index: 1;
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 1rem 2rem;
  max-width: 1280px; margin: 0 auto; width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.hero-text { color: var(--white); text-align: center; }
.hero-text h1 {
  font-size: clamp(1.4rem, 4vw, 3.5rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: .75rem;
}
.hero-subtitle {
  font-size: clamp(.9rem, 2vw, 1.25rem);
  font-weight: 700;
}
.hero-source { font-size: .8rem; color: #d1d5db; margin-top: .25rem; }
.hero-prize {
  display: flex; justify-content: center;
}
.hero-prize img { width: clamp(130px, 22vw, 280px); }

.hero-icons {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: .75rem;
}
.hero-icon-item { display: flex; justify-content: center; }
.hero-icon-item img {
  width: 100%; max-width: 240px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 2fr 1fr; }
  .hero-text { text-align: left; }
  .hero-prize { justify-content: flex-end; }
  .hero-icons { grid-template-columns: repeat(4,1fr); }
}

/* ──────────────────────────────────────────────────────────
   6. Plans Section
   ────────────────────────────────────────────────────────── */
.plans-section {
  padding: 3rem 1rem;
  background: #f8fafc;
  overflow: hidden;
}
.plans-title {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  color: #1e3a8a;
  margin-bottom: .5rem;
}

/* Carousel */
.carousel-outer {
  position: relative;
}
.carousel-track-wrapper {
  overflow: hidden;
  border-radius: .75rem;
  width: 100%;
}
.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .45s ease;
  width: 100%;
}
.plan-slide {
  flex: 0 0 100%;
}
@media (min-width: 768px)  { .plan-slide { flex: 0 0 calc(50% - .75rem); } }
@media (min-width: 1024px) { .plan-slide { flex: 0 0 calc(33.333% - 1rem); } }

/* Nav arrows */
.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-700);
  font-size: 1.4rem; font-weight: 700;
  transition: background .2s, color .2s, transform .2s;
}
.carousel-btn:hover { background: var(--orange-500); color: var(--white); transform: translateY(-50%) scale(1.1); }
.carousel-prev { left: -1.2rem; }
.carousel-next { right: -1.2rem; }
@media (max-width: 640px) {
  .carousel-prev { left: .2rem; }
  .carousel-next { right: .2rem; }
}

.carousel-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.25rem; }
.dot {
  width: .6rem; height: .6rem;
  border-radius: 50%;
  background: var(--gray-300);
  transition: background .3s, transform .3s;
  cursor: pointer; border: none;
}
.dot.active { background: var(--orange-500); transform: scale(1.3); }

/* Plan Card */
.plan-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 580px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: box-shadow .3s, transform .3s;
}
.plan-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.13); transform: translateY(-3px); }

.plan-card-header {
  padding: 1rem 1rem .5rem;
  flex-shrink: 0;
}
.plan-names {
  text-align: center;
  line-height: 1.1;
  margin-bottom: .5rem;
}
.plan-name-small {
  font-size: 1.1rem; font-weight: 700;
  display: block;
}
.plan-name-large {
  font-size: 2.5rem; font-weight: 800;
  display: block; line-height: 1;
}
.plan-name-badge {
  display: inline-block;
  font-size: .85rem; font-weight: 700;
  padding: .15rem .6rem;
  border-radius: 9999px;
  margin-top: .25rem;
  color: var(--white);
}
.plan-description {
  text-align: center;
  font-size: .85rem; color: var(--muted);
  padding: 0 .5rem;
  min-height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .5rem;
}
.plan-combo-label {
  text-align: center;
  font-size: .75rem; font-weight: 700;
  margin-bottom: .5rem;
}

/* Benefits grid */
.plan-benefits-grid {
  border-radius: 1rem;
  padding: 1rem .75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  position: relative;
  min-height: 200px;
}
.plan-benefit-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: .25rem;
}
.plan-benefit-item img {
  width: 2rem; height: 2rem;
  object-fit: contain;
}
.plan-benefit-title {
  font-size: .58rem; font-weight: 700;
  color: var(--white); line-height: 1.2;
}
.plan-benefit-desc {
  font-size: .6rem; color: var(--white); line-height: 1.3;
}
.plan-benefit-add {
  display: flex; flex-direction: column; align-items: center; gap: .2rem;
}
.plan-benefit-add img { width: 5rem; height: 2.5rem; object-fit: contain; }
.plan-benefit-add p { font-size: .6rem; color: var(--white); }
.plan-benefit-add2 { grid-column: span 2; display: flex; justify-content: center; }
.plan-benefit-add2 img { width: 7rem; height: 2.5rem; object-fit: contain; }

/* WhatsApp mini button */
.plan-wa-btn {
  position: absolute; bottom: -.375rem; right: .75rem;
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,.25);
  transition: transform .3s, background .3s;
  cursor: pointer;
  text-decoration: none;
}
.plan-wa-btn:hover { transform: scale(1.18) translateY(-3px); background: rgba(255,255,255,.3); }
.plan-wa-btn svg { width: 1.1rem; height: 1.1rem; }

/* Features list */
.plan-features {
  padding: .75rem 1rem;
  flex-grow: 1;
}
.plan-features ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.plan-features li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: var(--gray-700);
}
.plan-features li svg { width: 1rem; height: 1rem; flex-shrink: 0; }

.plan-cta-wrap {
  padding: 1rem;
  margin-top: auto;
}
.plan-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%;
  padding: .85rem 1rem;
  border-radius: .75rem;
  font-size: .9rem; font-weight: 700; color: var(--white);
  transition: filter .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 4px 15px rgba(0,0,0,.2);
  text-decoration: none;
}
.plan-cta-btn:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,.25); }
.plan-cta-btn svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }

/* Plan color themes */
/* Plan border-color classes removed – borders disabled */

.grad-laranja  { background: linear-gradient(135deg,#fb923c,#f97316); }
.grad-marrom   { background: linear-gradient(135deg,#92400e,#78350f); }
.grad-marfim   { background: linear-gradient(135deg,#fdba74,#fb923c); }
.grad-cinza    { background: linear-gradient(135deg,#6b7280,#4b5563); }
.grad-bordo    { background: linear-gradient(135deg,#991b1b,#7f1d1d); }
.grad-neon     { background: linear-gradient(135deg,#a855f7,#9333ea); }
.grad-dourado  { background: linear-gradient(135deg,#f59e0b,#eab308); }

.text-laranja  { color: #f97316; }
.text-marrom   { color: #92400e; }
.text-marfim   { color: #fb923c; }
.text-cinza    { color: #6b7280; }
.text-bordo    { color: #991b1b; }
.text-neon     { color: #9333ea; }
.text-dourado  { color: #f59e0b; }

/* ──────────────────────────────────────────────────────────
   7. Why Choose Us
   ────────────────────────────────────────────────────────── */
.why-section {
  padding: 3rem 1rem;
  background: linear-gradient(90deg, #f97316, #fb923c, #f59e0b);
}
.why-title {
  font-size: clamp(1.4rem, 3vw, 2.8rem);
  font-weight: 800; color: var(--white);
  text-align: center; margin-bottom: .5rem;
}
.why-subtitle {
  font-size: clamp(.9rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.9);
  text-align: center; margin-bottom: 1.5rem;
}
.why-icons-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: .75rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) { .why-icons-grid { grid-template-columns: repeat(4,1fr); } }
.why-icon-card {
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: .75rem;
  padding: 1rem;
  display: flex; flex-direction: column; align-items: center;
  gap: .5rem; text-align: center;
}
.why-icon-card img { width: 3.5rem; height: 3.5rem; object-fit: contain; }
.why-icon-card p { font-size: .85rem; font-weight: 600; color: #fff; }

/* Differentials card */
.why-card {
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.why-card-title {
  text-align: center;
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 1.5rem;
}
.why-card .why-card-title { color: #1e3a8a; }
.why-card .why-diff-title { color: #1e3a8a; }
.why-card .why-diff-desc  { color: #374151; }
.why-card .why-diff-icon  { background: rgba(30,58,138,.12); color: #1e3a8a; }
.why-differentials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .why-differentials { grid-template-columns: repeat(3,1fr); } }
.why-diff-item {
  display: flex; flex-direction: column; gap: .5rem;
  background: #ffffff;
  border-radius: .75rem;
  padding: .875rem 1rem;
}
.why-diff-icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(30,58,138,.1);
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  color: #1e3a8a;
}
.why-diff-icon svg { width: 1.25rem; height: 1.25rem; }
.why-diff-title {
  font-size: .95rem; font-weight: 700; color: #1e3a8a;
}
.why-diff-desc {
  font-size: .82rem; color: #374151; line-height: 1.5;
}
.why-contacts {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 640px) { .why-contacts { grid-template-columns: repeat(2,1fr); } }
.why-contact-item {
  display: flex; flex-direction: column; gap: .5rem;
  background: rgba(255,255,255,.9);
  border-radius: .75rem; padding: 1.25rem;
}
.why-contact-icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(30,58,138,.1);
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  color: #1e3a8a;
}
.why-contact-icon svg { width: 1.25rem; height: 1.25rem; }
.why-contact-title { font-weight: 700; color: #1e3a8a; }
.why-contact-desc {
  font-size: .8rem; color: #374151;
  line-height: 1.5;
}
.why-contact-link {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: .25rem;
  padding: .6rem 1.25rem;
  background: rgba(30,58,138,.1);
  border-radius: .5rem;
  font-weight: 700; font-size: .85rem; color: #1e3a8a;
  transition: background .2s;
}
.why-contact-link:hover { background: rgba(30,58,138,.2); }
.why-contact-link svg { width: 1rem; height: 1rem; }

/* ──────────────────────────────────────────────────────────
   8. Full-Screen Service Sections
   ────────────────────────────────────────────────────────── */
.service-section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.service-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.service-bg-mobile {
  display: none;
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
@media (max-width: 1023px) {
  .service-bg          { display: none; }
  .service-bg-mobile   { display: block; }
}
.service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.55), rgba(0,0,0,.15));
  z-index: 1;
}
.service-content {
  position: relative; z-index: 2;
  color: var(--white);
  padding: 4rem 1.5rem;
  max-width: 680px;
}
.service-logo { width: 10rem; margin-bottom: 1.5rem; }
.service-title {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 1rem;
}
.service-desc {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  line-height: 1.7; margin-bottom: 1.5rem;
  opacity: .92;
}
.service-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  background: linear-gradient(135deg,#f97316,#f59e0b);
  border-radius: .75rem;
  font-weight: 700; font-size: 1rem; color: var(--white);
  box-shadow: 0 4px 15px rgba(249,115,22,.4);
  transition: filter .25s, transform .25s;
}
.service-cta:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* ──────────────────────────────────────────────────────────
   9. Watch Carousel Section
   ────────────────────────────────────────────────────────── */
.watch-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.watch-carousel-inner {
  position: relative; width: 100%; height: 100vh;
}
.watch-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .7s ease;
  pointer-events: none;
}
.watch-slide.active { opacity: 1; pointer-events: auto; }
.watch-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.watch-dots {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .5rem; z-index: 10;
}
.watch-dot {
  width: .6rem; height: .6rem;
  border-radius: 50%; background: rgba(255,255,255,.5);
  cursor: pointer; transition: background .3s;
  border: none;
}
.watch-dot.active { background: var(--white); }

/* ──────────────────────────────────────────────────────────
   10. Video Testimonials
   ────────────────────────────────────────────────────────── */
.videos-section {
  padding: 4rem 1rem;
  background: #0f172a;
}
.videos-title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--white);
  text-align: center; margin-bottom: .5rem;
}
.videos-subtitle {
  text-align: center; color: #94a3b8; font-size: .95rem; margin-bottom: 2rem;
}
.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 640px)  { .videos-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .videos-grid { grid-template-columns: repeat(3,1fr); } }
.video-card {
  background: #1e293b;
  border-radius: 1rem; overflow: hidden;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(255,255,255,.07);
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,.35); }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9; overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.video-card:hover .video-thumb img { transform: scale(1.04); }
.video-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.35);
}
.video-play svg { width: 3.5rem; height: 3.5rem; color: var(--white); filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); }
.video-duration {
  position: absolute; bottom: .5rem; right: .5rem;
  background: rgba(0,0,0,.7); color: var(--white);
  font-size: .7rem; padding: .15rem .4rem; border-radius: .25rem;
}
.video-info { padding: .85rem 1rem; }
.video-title { font-weight: 700; color: var(--white); font-size: .9rem; margin-bottom: .35rem; }
.video-channel { font-size: .75rem; color: #94a3b8; }
.video-quote {
  font-size: .78rem; color: #fb923c; font-style: italic; margin-top: .35rem;
}

/* YouTube Modal */
.yt-modal-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.85); z-index: 10000;
  align-items: center; justify-content: center;
}
.yt-modal-backdrop.open { display: flex; }
.yt-modal-inner {
  position: relative;
  width: 90vw; max-width: 900px;
  aspect-ratio: 16/9;
}
.yt-modal-inner iframe {
  width: 100%; height: 100%; border: none; border-radius: .75rem;
}
.yt-modal-close {
  position: absolute; top: -.5rem; right: -.5rem;
  width: 2.5rem; height: 2.5rem;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: var(--black);
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
  cursor: pointer; transition: background .2s;
  border: none;
}
.yt-modal-close:hover { background: var(--gray-100); }

/* ──────────────────────────────────────────────────────────
   11. Google Reviews
   ────────────────────────────────────────────────────────── */
.reviews-section {
  padding: 3.5rem 1rem;
  background: var(--white);
}
.reviews-title {
  text-align: center;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700; color: #111827;
  margin-bottom: .5rem;
}
.reviews-stars-header {
  display: flex; align-items: center; justify-content: center; gap: .25rem;
  margin-bottom: 2rem;
}
.reviews-stars-header svg { width: 1.4rem; height: 1.4rem; color: #facc15; }
.reviews-stars-header span { font-weight: 700; font-size: 1.1rem; color: #111827; }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 640px)  { .reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3,1fr); } }
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: .75rem; padding: 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  display: flex; flex-direction: column; gap: .75rem;
}
.review-header { display: flex; align-items: center; gap: .75rem; }
.review-avatar { width: 2.75rem; height: 2.75rem; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: .9rem; color: #111827; }
.review-date { font-size: .75rem; color: var(--gray-500); }
.review-stars { display: flex; gap: .15rem; }
.review-stars svg { width: 1rem; height: 1rem; color: #facc15; }
.review-comment { font-size: .85rem; color: var(--gray-700); line-height: 1.6; }

/* ──────────────────────────────────────────────────────────
   12. FAQ Section
   ────────────────────────────────────────────────────────── */
.faq-section {
  padding: 3.5rem 1rem;
  background: var(--white);
  color: var(--black);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 1fr 1fr; } }
.faq-left {}
.faq-left-title {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700; color: var(--black);
  margin-bottom: 1rem; line-height: 1.3;
}
.faq-left-desc {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  line-height: 1.7; color: var(--black);
  margin-bottom: 1.5rem;
}
.faq-wa-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.75rem;
  background: linear-gradient(135deg,#f97316,#f59e0b);
  border-radius: .75rem;
  font-weight: 700; font-size: .95rem; color: var(--white);
  box-shadow: 0 4px 15px rgba(249,115,22,.35);
  transition: filter .25s, transform .25s;
  text-decoration: none;
}
.faq-wa-btn:hover { filter: brightness(1.1); transform: translateY(-2px); }
.faq-wa-btn svg { width: 1.1rem; height: 1.1rem; }

/* Accordion */
.accordion-item {
  border-bottom: 1px solid var(--gray-200);
}
.accordion-trigger {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0; text-align: left;
  font-size: clamp(.9rem, 2vw, 1.05rem); font-weight: 600;
  color: var(--black); cursor: pointer;
  gap: .75rem;
  transition: color .2s;
}
.accordion-trigger:hover { color: #f97316; }
.accordion-icon {
  flex-shrink: 0; width: 1.25rem; height: 1.25rem;
  color: #f97316; transition: transform .3s;
}
.accordion-item.open .accordion-icon { transform: rotate(180deg); }
.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.accordion-item.open .accordion-body { max-height: 600px; }
.accordion-content {
  padding: 0 0 1rem;
  font-size: .88rem; line-height: 1.7; color: var(--gray-700);
}
.accordion-content ul { padding-left: 1.2rem; display: flex; flex-direction: column; gap: .25rem; }

/* ──────────────────────────────────────────────────────────
   13. Indique e Ganhe
   ────────────────────────────────────────────────────────── */
.indique-section {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#1e3a8a,#1e40af,#2563eb);
  padding: 3rem 1rem;
  overflow: hidden;
}
.indique-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px; margin: 0 auto; width: 100%;
  align-items: center;
}
@media (min-width: 1024px) { .indique-grid { grid-template-columns: 1fr 1fr; } }
.indique-image { display: flex; justify-content: center; }
.indique-image img { max-height: 550px; object-fit: contain; }
.indique-content { color: var(--white); }
.indique-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 1rem;
}
.indique-desc {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  line-height: 1.7; margin-bottom: 1.5rem;
  opacity: .92;
}
.indique-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg,#f97316,#ef4444);
  border-radius: .75rem;
  font-weight: 700; font-size: 1rem; color: var(--white);
  box-shadow: 0 4px 20px rgba(249,115,22,.4);
  transition: filter .25s, transform .25s;
  text-decoration: none;
}
.indique-cta:hover { filter: brightness(1.1); transform: translateY(-2px); }
.indique-cta svg { width: 1.25rem; height: 1.25rem; }

/* ──────────────────────────────────────────────────────────
   14. Contact Form Section
   ────────────────────────────────────────────────────────── */
.form-section {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#dc2626,#ef4444,#7c3aed);
  padding: 3rem 1rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px; margin: 0 auto; width: 100%;
  align-items: center;
}
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-left { color: var(--white); text-align: center; }
@media (min-width: 768px) { .form-left { text-align: left; } }
.form-headline {
  font-size: clamp(1.4rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 1rem;
}
.form-headline span { opacity: .85; font-size: .65em; display: block; }
.form-box {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  padding: 1.75rem;
  max-width: 460px; margin: 0 auto; width: 100%;
}
.form-box-title {
  font-size: 1.2rem; font-weight: 700; color: #111827;
  text-align: center; margin-bottom: .35rem;
}
.form-box-desc {
  text-align: center; color: var(--gray-500); font-size: .82rem;
  margin-bottom: 1.25rem;
}
.form-group { margin-bottom: .85rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--gray-700); margin-bottom: .4rem; }
.form-control {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: .5rem;
  font-size: .9rem; color: var(--gray-700);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.15); }
.form-submit {
  width: 100%;
  padding: .85rem;
  background: linear-gradient(135deg,#dc2626,#7c3aed);
  color: var(--white); font-weight: 700; font-size: .95rem;
  border-radius: .5rem; border: none; cursor: pointer;
  transition: filter .25s, transform .25s;
  margin-top: .5rem;
}
.form-submit:hover { filter: brightness(1.1); transform: translateY(-1px); }
.form-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.form-alert {
  display: none; padding: .75rem 1rem;
  border-radius: .5rem; font-size: .85rem;
  margin-bottom: 1rem; text-align: center;
}
.form-alert.success { background: #dcfce7; border: 1px solid #86efac; color: #166534; }
.form-alert.error   { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }
.form-alert.show    { display: block; }

/* ──────────────────────────────────────────────────────────
   15. Footer
   ────────────────────────────────────────────────────────── */
footer {
  background: #1800ad;
  color: var(--white);
  padding: 3rem 1rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1280px; margin: 0 auto;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(5,1fr); } }
.footer-logo-col { grid-column: span 1; }
@media (min-width: 1024px) { .footer-logo-col { grid-column: span 1; } }
.footer-logo { height: 3rem; margin-bottom: .75rem; }
.footer-tagline { font-size: .72rem; line-height: 1.5; color: #9ca3af; max-width: 200px; }
.footer-col-title { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .85rem; color: #9ca3af; transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: #9ca3af; margin-bottom: .5rem;
}
.footer-contact-item svg { width: 1rem; height: 1rem; flex-shrink: 0; color: #6b7280; }
.footer-contact-item a { color: #9ca3af; transition: color .2s; }
.footer-contact-item a:hover { color: var(--white); }
.footer-socials { display: flex; gap: .75rem; margin-top: .75rem; }
.footer-socials a {
  width: 2.25rem; height: 2.25rem;
  background: #1f2937; border-radius: .4rem;
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af; transition: background .2s, color .2s;
}
.footer-socials a:hover { background: var(--orange-500); color: var(--white); }
.footer-socials svg { width: 1.1rem; height: 1.1rem; }
.footer-address-item {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .8rem; color: #9ca3af; margin-bottom: .5rem; line-height: 1.4;
}
.footer-address-item svg { width: .85rem; height: .85rem; flex-shrink: 0; margin-top: .15rem; color: #6b7280; }
.footer-bottom {
  max-width: 1280px; margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid #1f2937;
  text-align: center;
  font-size: .78rem; color: #6b7280;
}

/* ──────────────────────────────────────────────────────────
   16. Responsive tweaks
   ────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .plan-name-large { font-size: 2rem; }
  .whatsapp-float { bottom: 1rem; right: 1rem; }
  .whatsapp-icon-wrap { width: 3.75rem; height: 3.75rem; }
  .whatsapp-ping,.whatsapp-pulse { width: 3.75rem; height: 3.75rem; }
}

/* ──────────────────────────────────────────────────────────
   17. Service Sections Carousel (6 full-screen slides)
   ────────────────────────────────────────────────────────── */
.svc-carousel {
  position: relative;
  width: 100%; height: 100vh;
  overflow: hidden;
}
.svc-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .7s ease;
  pointer-events: none;
}
.svc-slide.active { opacity: 1; pointer-events: auto; }
.svc-slide-bg,
.svc-slide-bg-mobile {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.svc-slide-bg        { display: none; }
.svc-slide-bg-mobile { display: block; }
@media (min-width: 1024px) {
  .svc-slide-bg        { display: block; }
  .svc-slide-bg-mobile { display: none; }
}
.svc-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 3rem; height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,.4);
  color: var(--white); font-size: 1.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.svc-nav-btn:hover { background: rgba(255,255,255,.32); }
.svc-prev-btn { left: 1rem; }
.svc-next-btn { right: 1rem; }
.svc-dots-bar {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: .5rem; z-index: 10;
}
.svc-dot {
  width: .6rem; height: .6rem; border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer; border: none;
  transition: background .3s, transform .3s;
}
.svc-dot.active { background: var(--white); transform: scale(1.3); }

/* Clube phone overlay */
.svc-clube-phone {
  position: absolute; z-index: 5;
  top: 50%; left: 4rem;
  transform: translateY(-50%);
  display: none;
}
@media (min-width: 1024px) { .svc-clube-phone { display: block; } }
.svc-clube-phone img {
  width: clamp(180px, 28vw, 360px);
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.4));
}

/* ──────────────────────────────────────────────────────────
   18. Plan card camera overlay
   ────────────────────────────────────────────────────────── */
.plan-camera-overlay {
  position: absolute;
  top: -1.5rem; right: -.5rem;
  width: 4.5rem; height: 4.5rem;
  object-fit: contain;
  z-index: 5;
  pointer-events: none;
}

