/* ============================================
   DIVAS — Design System & Styles
   Comunidade Exclusiva para Mulheres NVM
   ============================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  /* Colors */
  --burgundy: #722F37;
  --burgundy-deep: #3D1520;
  --gold: #C9A96E;
  --gold-light: #d4ba8a;
  --blush: #D4A0A0;
  --blush-light: #e4c0c0;
  --offwhite: #f8f8f4;
  --offwhite-warm: #fafaf7;
  --text-dark: #2D2D2D;
  --text-muted: #5a5a5a;
  --white: #ffffff;
  --shadow-warm: rgba(114, 47, 55, 0.08);
  --shadow-warm-md: rgba(114, 47, 55, 0.12);
  --shadow-warm-lg: rgba(114, 47, 55, 0.16);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py: 100px;
  --section-px: 24px;
  --container-max: 1200px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--offwhite);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--burgundy);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.8;
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 48px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: none;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b8944d 100%);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(201, 169, 110, 0.35),
    0 0 0 0 rgba(201, 169, 110, 0);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.5),
    0 0 40px rgba(201, 169, 110, 0.2);
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent, rgba(255, 255, 255, 0.1));
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-gold:hover::after {
  opacity: 1;
}

.btn-burgundy {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  color: var(--offwhite);
  box-shadow: 0 4px 24px rgba(61, 21, 32, 0.25);
}

.btn-burgundy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(61, 21, 32, 0.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-pulse {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 4px 24px rgba(201, 169, 110, 0.35),
      0 0 0 0 rgba(201, 169, 110, 0.3);
  }

  50% {
    box-shadow: 0 4px 24px rgba(201, 169, 110, 0.5),
      0 0 50px rgba(201, 169, 110, 0.15);
  }
}

.btn-lg {
  padding: 22px 60px;
  font-size: 1.25rem;
}

/* ── Section Backgrounds ── */
.section-offwhite {
  background-color: var(--offwhite);
  padding: var(--section-py) 0;
}

.section-burgundy {
  background: linear-gradient(170deg, var(--burgundy-deep) 0%, #4a1a28 40%, var(--burgundy-deep) 100%);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.section-burgundy::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-burgundy::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 160, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-blush {
  background: linear-gradient(180deg, #f0e4da 0%, #f3ebe4 50%, var(--offwhite) 100%);
  padding: var(--section-py) 0;
}

/* ── Organic Dividers ── */
.divider-wave {
  position: relative;
  overflow: hidden;
}

.divider-wave::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--offwhite);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.divider-wave-top::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--offwhite);
  clip-path: ellipse(55% 100% at 50% 0%);
  z-index: 1;
}

/* ── Animation Classes (applied by JS) ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.25s;
}

.stagger-3 {
  transition-delay: 0.4s;
}

.stagger-4 {
  transition-delay: 0.55s;
}

/* ════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: var(--burgundy-deep);
  /* Matching hero background */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
}

.header-logo-sur {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 5px;
  color: var(--blush);
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: -5px;
}

.header-logo-main {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}

.header-logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--blush);
  text-transform: uppercase;
  margin-top: 2px;
}

.header-cta {
  font-family: var(--font-body);
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 40px;
  /* Assume .btn-outline-light is defined or basic btn style */
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  transition: all 0.3s ease;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════
   SECTION 1 — HERO
   ════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 30%, #5a1e2d 0%, var(--burgundy-deep) 60%, #1a0508 100%);
  position: relative;
  overflow: hidden;
  padding: 180px 0 120px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Subtle SVG Noise Texture */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* Organic glow shapes */
.hero-glow-1 {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 5%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 160, 160, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-3 {
  position: absolute;
  top: 40%;
  left: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 160, 160, 0.15);
  border: 1px solid rgba(212, 160, 160, 0.25);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.85rem;
  color: var(--blush-light);
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  color: var(--offwhite);
  max-width: 850px;
  margin: 0 auto 24px;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  color: var(--blush-light);
  max-width: 650px;
  margin: 0 auto 44px;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  line-height: 1.8;
  opacity: 0.9;
}

.hero-cta-wrapper {
  margin-bottom: 60px;
}

/* Video placeholder */
.hero-video {
  max-width: 680px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(201, 169, 110, 0.2);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-video:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(180deg, rgba(61, 21, 32, 0.4) 0%, rgba(61, 21, 32, 0.7) 100%);
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #b8944d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 30px rgba(201, 169, 110, 0.4);
  transition: transform 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.1);
}

.play-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
  margin-left: 4px;
}

.hero-video-text {
  color: var(--offwhite);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ════════════════════════════════════════════
   SECTION 2 — A DOR
   ════════════════════════════════════════════ */
.pain-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.pain-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border-left: 4px solid var(--burgundy);
  box-shadow: 0 4px 20px var(--shadow-warm),
    0 1px 4px var(--shadow-warm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow-warm-md);
}

.pain-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(201, 169, 110, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pain-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.pain-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ════════════════════════════════════════════
   SECTION 3 — A PROMESSA
   ════════════════════════════════════════════ */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.promise-item {
  text-align: center;
  padding: 32px 24px;
}

.promise-item h3 {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-style: italic;
}

.promise-item p {
  color: rgba(245, 237, 227, 0.85);
  font-size: 1.05rem;
  line-height: 1.8;
}

.promise-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 20px;
}

.section-burgundy .section-title {
  color: var(--gold);
}

.section-burgundy .section-subtitle {
  color: rgba(245, 237, 227, 0.75);
}

/* ════════════════════════════════════════════
   SECTION 4 — O QUE ESTÁ INCLUSO
   ════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px var(--shadow-warm-md),
    0 0 0 1px rgba(201, 169, 110, 0.3);
}

.feature-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.feature-card-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h4 {
  color: var(--burgundy);
  margin-bottom: 14px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Badges Progression */
.badges-section {
  margin-top: 70px;
  text-align: center;
}

.badges-subtitle {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.badges-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 18px;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
  min-width: 120px;
}

.badge-item:hover {
  transform: translateY(-4px);
}

.badge-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.badge-bronze .badge-icon {
  background: linear-gradient(135deg, #cd7f32, #a0622e);
  color: white;
}

.badge-silver .badge-icon {
  background: linear-gradient(135deg, #c0c0c0, #8e8e8e);
  color: white;
}

.badge-gold .badge-icon {
  background: linear-gradient(135deg, var(--gold), #b8944d);
  color: white;
}

.badge-diamond .badge-icon {
  background: linear-gradient(135deg, #9ecae1, #5f9dc4);
  color: white;
}

.badge-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.badge-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--blush), var(--gold));
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   SECTION 5 — PROVA SOCIAL
   ════════════════════════════════════════════ */
.testimonials-carousel {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  animation: carousel-scroll 30s linear infinite;
  width: max-content;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes carousel-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  flex-shrink: 0;
  width: 380px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.6;
}

.testimonial-card p {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--burgundy);
  font-size: 1rem;
}

.testimonial-author::before {
  content: '— ';
  color: var(--gold);
}

/* ════════════════════════════════════════════
   SECTION 6 — PRICING
   ════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 50px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  text-align: center;
  border: 2px solid rgba(114, 47, 55, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--shadow-warm-md);
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(201, 169, 110, 0.2);
  transform: scale(1.04);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.pricing-card.highlight {
  background: linear-gradient(170deg, var(--burgundy-deep) 0%, #4a1a28 100%);
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(61, 21, 32, 0.3);
}

.pricing-card.highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(61, 21, 32, 0.4);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #b8944d);
  color: var(--white);
  padding: 6px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
}

.pricing-card .plan-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 24px;
  margin-top: 8px;
}

.pricing-card.highlight .plan-name {
  color: var(--offwhite);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--burgundy);
  line-height: 1.1;
}

.pricing-price .currency {
  font-size: 1.4rem;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-card.highlight .pricing-price {
  color: var(--gold);
}

.pricing-installment {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 8px 0 4px;
}

.pricing-card.highlight .pricing-installment {
  color: rgba(245, 237, 227, 0.7);
}

.pricing-equivalent {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.pricing-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-card.highlight .pricing-note {
  color: var(--blush-light);
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}

.pricing-footer-text {
  text-align: center;
  max-width: 700px;
  margin: 50px auto 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* ════════════════════════════════════════════
   SECTION 7 — PRA QUEM É / NÃO É
   ════════════════════════════════════════════ */
.for-who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.for-who-block {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: 0 4px 20px var(--shadow-warm);
}

.for-who-block.for-yes {
  border-top: 4px solid var(--gold);
}

.for-who-block.for-no {
  border-top: 4px solid var(--blush);
  background: var(--offwhite-warm);
}

.for-who-block h3 {
  font-size: 1.35rem;
  margin-bottom: 24px;
}

.for-who-block.for-no h3 {
  color: var(--blush);
}

.for-who-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.for-who-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.for-who-list .icon-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.for-who-list .icon-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
}

.for-who-list .icon-x {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(212, 160, 160, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.for-who-list .icon-x svg {
  width: 12px;
  height: 12px;
  stroke: var(--blush);
  fill: none;
  stroke-width: 2.5;
}

/* ════════════════════════════════════════════
   SECTION 8 — FAQ
   ════════════════════════════════════════════ */
.faq-list {
  max-width: 800px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow-warm);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px var(--shadow-warm-md);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  line-height: 1.5;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--burgundy);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(201, 169, 110, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.3s;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  stroke-width: 2.5;
  fill: none;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--gold), #b8944d);
}

.faq-item.active .faq-icon svg {
  stroke: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    padding 0.5s;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ════════════════════════════════════════════
   SECTION 9 — CHAMADA FINAL
   ════════════════════════════════════════════ */
.final-cta {
  text-align: center;
  padding: 120px 0;
}

.final-cta h2 {
  color: var(--offwhite);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
}

.final-cta .subtitle-gold {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-style: italic;
  margin-bottom: 48px;
}

.final-cta .founding-text {
  color: rgba(245, 237, 227, 0.7);
  font-size: 1rem;
  margin-top: 24px;
}

.final-slogan {
  color: rgba(245, 237, 227, 0.5);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-top: 40px;
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.site-footer {
  background: var(--burgundy-deep);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.footer-logo-sur {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 10px;
  color: var(--blush);
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: -8px;
}

.footer-logo-main {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(245, 237, 227, 0.6);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.footer-copyright {
  color: rgba(245, 237, 227, 0.35);
  font-size: 0.8rem;
  margin-top: 12px;
}

/* ════════════════════════════════════════════
   HERO PHOTO PLACEHOLDER
   ════════════════════════════════════════════ */
.hero-photo {
  margin-top: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-photo-placeholder {
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.08);
  border: 2px dashed rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(245, 237, 227, 0.4);
}

.hero-photo-placeholder svg {
  opacity: 0.4;
  stroke: var(--gold);
}

.hero-photo-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(245, 237, 227, 0.5);
  letter-spacing: 1px;
}

.hero-photo-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: block;
}

/* ════════════════════════════════════════════
   PRICING — DISABLED CARDS
   ════════════════════════════════════════════ */
.pricing-card.pricing-disabled {
  opacity: 0.45;
  filter: grayscale(80%) saturate(40%);
  pointer-events: none;
  border-color: rgba(100, 100, 100, 0.15);
}

.pricing-card.pricing-disabled .plan-name,
.pricing-card.pricing-disabled .pricing-price,
.pricing-card.pricing-disabled .pricing-price .currency {
  color: #8a8a8a;
}

.pricing-card.pricing-disabled .btn {
  background: #aaa;
  color: #fff;
  box-shadow: none;
}

/* ════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.whatsapp-fab.visible {
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.highlight {
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 70px;
    --section-px: 20px;
  }

  body {
    font-size: 18px;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 80px;
  }

  .pain-cards-grid {
    grid-template-columns: 1fr;
  }

  .promise-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .for-who-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    width: 320px;
  }

  .badges-track {
    gap: 8px;
  }

  .badge-connector {
    width: 20px;
  }

  .badge-item {
    min-width: 70px;
    padding: 12px 8px;
  }

  .badge-label {
    font-size: 0.75rem;
  }

  .badge-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .btn {
    padding: 16px 36px;
    font-size: 1rem;
  }

  .btn-lg {
    padding: 18px 44px;
    font-size: 1.1rem;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }

  .faq-answer-inner {
    padding: 0 20px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .testimonial-card {
    width: 290px;
    padding: 28px 24px;
  }

  .pricing-card {
    padding: 32px 20px;
  }

  .for-who-block {
    padding: 28px 24px;
  }
}

/* Round Feature Image */
.final-photo-img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

/* Hero Mockup Styles */
.hero-mockup-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 60px;
  z-index: 2;
  perspective: 1000px;
  /* For 3D depth */
}

.hero-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  /* Filter and styling to match the reference's dark mockup vibe */
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  animation: float-mockup 6s ease-in-out infinite;
}

.hero-mockup-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  max-width: 90vw;
  height: 120%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, rgba(114, 47, 55, 0.1) 40%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

@keyframes float-mockup {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Mobile Overrides for Safety */
@media (max-width: 480px) {

  /* Prevent Footer Overflow */
  .footer-logo {
    font-size: 3rem;
  }

  /* Constrain Hero Glow further */
  .hero-mockup-glow {
    max-width: 80vw;
    width: 100%;
    filter: blur(50px);
  }

  /* Tame Drop Shadow to prevent bleed */
  .hero-mockup-img {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
  }

  /* Ensure Hero overflow is contained */
  .hero {
    overflow: hidden;
  }
}

/* Desktop Side-by-Side Layout */
@media (min-width: 992px) {
  .hero-grid-container {
    display: grid;
    grid-template-columns: 0.7fr 1.4fr;
    grid-template-rows: auto auto;
    /* Two rows: Text, then CTA */
    align-items: center;
    gap: 40px;
    text-align: left !important;
    overflow: visible;
  }

  /* Reset padding for desktop to avoid it being too large */
  .hero {
    padding: 140px 0 120px;
  }

  .hero-left-col {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-cta-wrapper {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0 !important;
    /* Reset inline style margin if needed, or adjust */
    align-self: start;
    /* Align to top of its row space */
  }

  .hero-right-col {
    grid-column: 2;
    grid-row: 1 / span 2;
    /* Span both rows */
    align-self: center;
  }

  .hero h1 {
    margin: 0 0 24px 0;
    max-width: 650px;
    font-size: 3.2rem;
  }

  .hero-subtitle {
    margin: 0 0 40px 0;
    max-width: 480px;
    font-size: 1.25rem;
  }

  .hero-mockup-wrapper {
    margin: 0;
    width: 119%;
    margin-right: -45%;
    transform: scale(1.05) translateY(-75px);
    transform-origin: center right;
    pointer-events: none;
  }
}