:root {
  --gold: #C6A84E;
  --gold-light: #E8D48B;
  --gold-dark: #A08030;
  --gold-glow: #D4B655;
  --black: #0A0A0A;
  --black-soft: #1A1A1A;
  --black-card: #141414;
  --cream: #FDF8EE;
  --cream-dark: #F5EDD8;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-light: #F5F5F5;
  --text-muted: #888;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--black);
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(to left, #8B7231 0%, #6B5525 15%, #3D2F14 35%, #1a1510 55%, var(--black) 75%, var(--black) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 40%, rgba(198,168,78,0.07) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 70%, rgba(198,168,78,0.04) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}
.hero-layout {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.hero-content {
  text-align: center;
  align-self: center;
  padding-bottom: 40px;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 30px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease-out;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
  animation: fadeInUp 1s ease-out 0.2s both;
}
.hero h1 span {
  display: block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 14px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.4s both;
}
.hero-phrase {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gold-light);
  margin-bottom: 32px;
  animation: fadeInUp 1s ease-out 0.5s both;
}
.hero-cta-group { animation: fadeInUp 1s ease-out 0.6s both; }
.cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 44px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(198,168,78,0.3);
  position: relative;
  overflow: hidden;
}
.cta-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.cta-primary:hover::after { transform: translateX(100%); }
.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(198,168,78,0.5);
}
.hero-trust {
  margin-top: 20px;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}
.hero-trust strong { color: var(--gold-light); font-weight: 700; }

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: fadeInUp 1.2s ease-out 0.3s both;
  margin-bottom: -4px; /* Encostar na linha dourada da seção seguinte */
  align-self: flex-end;
}
.hero-image-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 85%;
  background: radial-gradient(ellipse at center bottom, rgba(198,168,78,0.12), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.hero-photo {
  position: relative;
  z-index: 2;
  max-width: 450px;
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  object-position: top center;
  mix-blend-mode: lighten;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 75%, transparent 100%);
}
/* Moldura decorativa atrás da foto */
/* Moldura removida - foto com fundo transparente */
.hero-image-frame { display: none; }
.hero-image-frame::after {
  content: '';
  position: absolute;
  top: -8px; right: -8px;
  width: 40px; height: 40px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 0 12px 0 0;
}
.hero-image-frame::before {
  content: '';
  position: absolute;
  bottom: -8px; left: -8px;
  width: 40px; height: 40px;
  border-bottom: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: 0 0 0 12px;
}

/* Placeholder até trocar pela foto real */
.hero-photo-placeholder {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, rgba(198,168,78,0.06) 0%, rgba(198,168,78,0.12) 100%);
  border-radius: 200px 200px 20px 20px;
  border: 2px dashed rgba(198,168,78,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(198,168,78,0.5);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}
.hero-photo-placeholder svg {
  width: 64px; height: 64px;
  opacity: 0.4;
}
.hero-photo-placeholder span {
  max-width: 200px;
  line-height: 1.4;
}

@keyframes floatButterfly {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero butterflies image */
.hero-butterflies-img {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 150px;
  top: 4%;
  left: 3%;
  mix-blend-mode: normal;
  opacity: 0.7;
  animation: floatButterfly 6s ease-in-out infinite;
}

@media (max-width: 900px) {
  .hero-butterflies-img {
    width: 100px;
    top: 1%;
    left: 2%;
  }
}

/* Mobile: stack vertically */
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .hero-content { text-align: center; order: 2; }
  .hero-image-wrapper { order: 1; }
  .hero-photo, .hero-photo-placeholder { max-width: 280px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
}

/* ===== SECTIONS COMMON ===== */
section { padding: 80px 20px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  margin-bottom: 16px;
}
.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 650px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.gold-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 20px;
  border-radius: 2px;
}

/* ===== VÍDEO DE APRESENTAÇÃO ===== */
.video-section {
  background: var(--black-soft);
  padding: 80px 0;
  position: relative;
}
.video-section .section-title,
.video-section .section-subtitle {
  color: var(--cream);
}
.video-wrapper {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
}
.video-wrapper video {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(200, 170, 110, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.video-play-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  transition: opacity 0.3s ease;
}
.video-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.video-play-overlay .play-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}
.video-wrapper:hover .play-icon {
  transform: scale(1.1);
}
.video-play-overlay .play-icon::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent var(--black-soft);
  margin-left: 4px;
}
.video-play-overlay .play-text {
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  margin-top: 12px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ===== O QUE SÃO ===== */
.about {
  background: var(--cream);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 5%, var(--gold-dark) 30%, var(--gold-light) 50%, var(--gold-dark) 70%, transparent 95%);
}
/* Glow acima da linha */
.about::after {
  content: '';
  position: absolute;
  top: -20px; left: 10%; right: 10%;
  height: 20px;
  background: linear-gradient(to top, rgba(198,168,78,0.1), transparent);
  pointer-events: none;
}
.about .section-title { color: var(--black); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}
.about-text strong { color: var(--black); }
.pain-points {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.pain-points h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 20px;
}
.pain-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}
.pain-point .icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--black);
  margin-top: 2px;
}

/* ===== O QUE PODE MUDAR ===== */
.life-change {
  background: var(--black-soft);
  color: var(--white);
  text-align: center;
}
.life-change .section-title { color: var(--white); }
.life-change .section-subtitle { color: rgba(255,255,255,0.6); }
.life-change-list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.life-change-item {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  padding: 14px 20px;
  background: var(--black-card);
  border: 1px solid rgba(198,168,78,0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.life-change-item:hover {
  border-color: rgba(198,168,78,0.3);
  transform: translateX(6px);
}

/* ===== FRASE DESTAQUE ===== */
.quote-highlight {
  background: linear-gradient(135deg, var(--black) 0%, #1a1510 50%, var(--black) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-highlight::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}
.quote-highlight blockquote {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.quote-highlight blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.quote-highlight blockquote p span {
  color: var(--gold-light);
  font-weight: 700;
}
.quote-highlight .quote-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px auto 0;
}

/* ===== MINHA HISTÓRIA ===== */
.my-story {
  background: var(--cream);
  position: relative;
}
.my-story::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 5%, var(--gold-dark) 30%, var(--gold-light) 50%, var(--gold-dark) 70%, transparent 95%);
}
.my-story .section-title { color: var(--black); }
.my-story-content {
  max-width: 780px;
  margin: 0 auto;
}
.my-story-content p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 20px;
}
.my-story-content p:last-child {
  margin-bottom: 0;
}
.my-story-content strong {
  color: var(--black);
}
.my-story-content .story-emphasis {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-dark);
  display: block;
  text-align: center;
  margin: 32px 0;
  line-height: 1.6;
}
.my-story-content .story-highlight {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 28px 0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.my-story-content .story-highlight p {
  margin-bottom: 0;
  color: #555;
  font-size: 1rem;
}

/* ===== PARA QUEM ===== */
.for-who {
  background: var(--black-soft);
  color: var(--white);
}
.for-who .section-title { color: var(--white); }
.for-who .section-subtitle { color: rgba(255,255,255,0.6); }
.for-who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.for-who-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--black-card);
  border: 1px solid rgba(198,168,78,0.12);
  border-radius: 14px;
  padding: 24px 22px;
  transition: all 0.4s ease;
}
.for-who-item:hover {
  border-color: rgba(198,168,78,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(198,168,78,0.08);
}
.for-who-item .fw-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: linear-gradient(135deg, rgba(198,168,78,0.15), rgba(198,168,78,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.for-who-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}
.for-who-item p strong {
  color: var(--white);
}

/* ===== DESTAQUE TERAPEUTA ===== */
.therapist-highlight {
  background: linear-gradient(135deg, var(--black) 0%, #1a1510 50%, var(--black) 100%);
  padding: 70px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.therapist-highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.therapist-highlight::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.therapist-highlight p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}
.therapist-highlight p span {
  color: var(--gold-light);
  font-weight: 700;
}
.therapist-highlight p em {
  font-style: italic;
  color: var(--gold);
}

/* ===== BENEFÍCIOS ===== */
.benefits {
  background: var(--black-soft);
  color: var(--white);
}
.benefits .section-title { color: var(--white); }
.benefits .section-subtitle { color: rgba(255,255,255,0.6); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--black-card);
  border: 1px solid rgba(198,168,78,0.15);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.benefit-card:hover::before { opacity: 1; }
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198,168,78,0.3);
  box-shadow: 0 12px 40px rgba(198,168,78,0.1);
}
.benefit-icon {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(198,168,78,0.15), rgba(198,168,78,0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.benefit-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.benefit-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ===== POR QUE FAZER ===== */
.why { background: var(--cream); }
.why .section-title { color: var(--black); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s;
}
.why-item:hover { transform: translateY(-3px); }
.why-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item h4 { font-size: 1rem; color: var(--black); margin-bottom: 4px; }
.why-item p { font-size: 0.9rem; color: #666; line-height: 1.5; }

/* ===== O QUE INCLUI ===== */
.includes {
  background: var(--black-soft);
  color: var(--white);
}
.includes .section-title { color: var(--white); }
.includes-list { max-width: 700px; margin: 0 auto; }
.include-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(198,168,78,0.1);
}
.include-item:last-child { border-bottom: none; }
.include-check {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--black);
  font-weight: 900;
}
.include-item p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* ===== DEPOIMENTOS CARDS ===== */
.testimonials {
  background: var(--cream);
  overflow: hidden;
}
.testimonials .section-title { color: var(--black); }

.test-carousel-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}
.test-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 10px 0 20px;
}
.test-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border: 1px solid rgba(198,168,78,0.08);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.test-card-quote {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  pointer-events: none;
}
.test-card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.test-card-stars span {
  color: var(--gold);
  font-size: 1rem;
}
.test-card-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.test-card-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #f0ece4;
  padding-top: 18px;
}
.test-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--black);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.test-card-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
}
.test-card-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.test-card-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(198,168,78,0.12), rgba(198,168,78,0.05));
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* Carousel Navigation */
.test-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.test-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.test-nav-btn:hover {
  background: var(--gold);
  color: var(--black);
}
.test-dots {
  display: flex;
  gap: 8px;
}
.test-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0.3;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.test-dot.active {
  opacity: 1;
  width: 28px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

/* ===== SECOND TESTIMONIALS ROW (Dark) ===== */
.testimonials-dark {
  background: var(--black-soft);
  color: var(--white);
  padding: 80px 20px;
}
.testimonials-dark .section-title { color: var(--white); }
.testimonials-dark .section-subtitle { color: rgba(255,255,255,0.5); }

.test-dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.test-dark-card {
  background: var(--black-card);
  border: 1px solid rgba(198,168,78,0.12);
  border-radius: 20px;
  padding: 32px 24px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.test-dark-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.test-dark-card:hover::before { opacity: 1; }
.test-dark-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198,168,78,0.25);
}
.test-dark-quote {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  right: 20px;
  pointer-events: none;
}
.test-dark-card .tag {
  display: inline-block;
  background: rgba(198,168,78,0.1);
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.test-dark-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.test-dark-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(198,168,78,0.08);
  padding-top: 16px;
}
.test-dark-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--black);
  font-size: 1rem;
  flex-shrink: 0;
}
.test-dark-author {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-light);
}

/* ===== PRICING ===== */
.pricing {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  text-align: center;
}
.pricing .section-title { color: var(--black); }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto 40px;
}
.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
}
.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(198,168,78,0.15);
}
.price-card.featured::before {
  content: 'MAIS POPULAR';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 6px 20px;
  border-radius: 20px;
}
.price-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 4px;
}
.price-installment {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 24px;
}
.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--black) 0%, #1a1510 50%, var(--black) 100%);
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(198,168,78,0.08), transparent 70%);
}
.final-cta .container { position: relative; z-index: 2; }
.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 12px;
}
.final-cta h2 span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.final-cta p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.urgency-badge {
  display: inline-block;
  background: rgba(198,168,78,0.1);
  border: 1px solid rgba(198,168,78,0.3);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 24px;
  border-radius: 8px;
  margin-bottom: 28px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  border-top: 1px solid rgba(198,168,78,0.1);
  padding: 32px 20px;
  text-align: center;
}
footer p { color: var(--text-muted); font-size: 0.85rem; }
footer a { color: var(--gold); text-decoration: none; }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.floating-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  text-decoration: none;
  font-weight: 900;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(198,168,78,0.4);
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.floating-cta a:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(198,168,78,0.5);
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
.depoimentos-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .depoimentos-video-grid { grid-template-columns: 1fr; max-width: 500px; }
  section { padding: 60px 16px; }
  .about-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .for-who-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 400px; }
  .test-dark-grid { grid-template-columns: 1fr; }
  .test-card { width: 290px; }
  .cta-primary { padding: 16px 36px; font-size: 1rem; }
}
@media (max-width: 480px) {
  .test-card { width: 270px; }
}
