/* ===================================================================
   GLOWTH — Design System & Styles (Pure CSS)
   Brand: Deep Burgundy/Marsala + Gold
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Tokens ─────────────────────────────────────────────────────── */
:root {
  /* Brand Colors — Burgundy + Gold */
  --background: 350 40% 8%;
  --foreground: 40 30% 92%;

  --card: 350 35% 12%;
  --card-foreground: 40 30% 92%;

  --primary: 42 68% 55%;
  --primary-foreground: 350 40% 8%;

  --secondary: 350 38% 10%;
  --secondary-foreground: 40 30% 92%;

  --muted: 350 25% 22%;
  --muted-foreground: 350 12% 55%;

  --accent: 42 55% 72%;
  --accent-foreground: 350 40% 8%;

  --border: 350 25% 18%;

  --gold: 42 68% 55%;
  --gold-light: 42 55% 72%;
  --burgundy: 350 40% 8%;
  --burgundy-mid: 350 45% 20%;

  /* Radius */
  --radius: 0.75rem;

  /* Font families */
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

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

img { 
  max-width: 100%; 
  display: block; 
  pointer-events: none;
  -webkit-user-drag: none;
}
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input { font: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: hsl(var(--background)); }
::-webkit-scrollbar-thumb { background: hsl(var(--gold) / 0.4); border-radius: 3px; }

/* ── Grain Overlay ──────────────────────────────────────────────── */
.grain-overlay {
  position: relative;
}
.grain-overlay::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── Section Divider ────────────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, hsl(var(--gold) / 0.3) 50%, transparent 100%);
  margin-bottom: 5rem;
}

/* ── Scroll Reveal ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(3px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ── Text Utilities ─────────────────────────────────────────────── */
.text-balance { text-wrap: balance; }
.text-pretty  { text-wrap: pretty; }
.text-center  { text-align: center; }

/* ── Components ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: hsl(var(--gold));
  color: hsl(var(--background));
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.btn-primary:hover {
  background: hsl(var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px hsl(var(--gold) / 0.2);
}

.btn-secondary {
  display: inline-block;
  background: hsl(var(--gold) / 0.08);
  color: hsl(var(--gold));
  border: 1px solid hsl(var(--gold) / 0.4);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: hsl(var(--gold) / 0.15);
  border-color: hsl(var(--gold));
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .btn-primary, .btn-secondary {
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
  }
}
/* ===================================================================
   NAVBAR
   =================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding: 0 1.5rem;
}

.navbar__logo img {
  height: 4.25rem;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar__links a {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
  letter-spacing: 0.04em;
}
.navbar__links a:hover {
  color: hsl(var(--gold));
}
.navbar__links a.navbar__cta {
  color: hsl(var(--background));
  background: hsl(var(--gold));
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s;
}
.navbar__links a.navbar__cta:hover {
  background: hsl(var(--gold-light));
  color: hsl(var(--background));
  transform: translateY(-1px);
}
.navbar__mobile-menu a.navbar__cta {
  color: hsl(var(--background));
  background: hsl(var(--gold));
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-align: center;
  margin-top: 0.25rem;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0.5rem;
}
.navbar__hamburger span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: hsl(var(--gold));
  transition: transform 0.3s, opacity 0.3s;
}
.navbar__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile menu */
.navbar__mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: hsl(var(--background) / 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid hsl(var(--border));
}
.navbar__mobile-menu.open {
  display: flex;
}
.navbar__mobile-menu a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}
.navbar__mobile-menu a:hover {
  color: hsl(var(--gold));
}

@media (max-width: 768px) {
  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }
}

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

/* Background banner image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    hsl(var(--background) / 0.3) 0%,
    hsl(var(--background) / 0.6) 50%,
    hsl(var(--background) / 0.95) 100%
  );
}

/* Desktop/mobile banner switching */
.hero__bg-desktop { display: block; }
.hero__bg-mobile  { display: none; }

@media (max-width: 768px) {
  .hero__bg-desktop { display: none; }
  .hero__bg-mobile  { display: block; }
}

.hero__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: hsl(var(--gold) / 0.06);
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: left;
  max-width: 40rem;
  width: 62%;
  padding: 5rem 4rem 0 2.5rem;
}

@media (max-width: 768px) {
  .hero {
    justify-content: center;
  }
  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 5rem 1.5rem 0;
    text-align: center;
  }
  /* Overlay mais denso no mobile para legibilidade */
  .hero__bg::after {
    background: linear-gradient(
      to bottom,
      hsl(var(--background) / 0.55) 0%,
      hsl(var(--background) / 0.72) 50%,
      hsl(var(--background) / 0.97) 100%
    );
  }
  /* Blur suave na imagem de fundo no mobile */
  .hero__bg img {
    filter: blur(3px);
    transform: scale(1.04);
  }
}

.hero__badge {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--gold) / 0.25);
  background: hsl(var(--gold) / 0.08);
  color: hsl(var(--gold));
  font-size: 0.75rem;
  font-family: var(--font-body);
  margin: 0 auto 2rem;
  letter-spacing: 0.03em;
}

/* Headline e subtitle alinhados à esquerda no desktop */
.hero__headline {
  text-align: left;
}

.hero h1 {
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  line-height: 1.25;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero h1 {
    white-space: normal;
    font-size: clamp(1.625rem, 5vw, 2.25rem);
  }
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: hsl(var(--muted-foreground));
  max-width: 32rem;
  margin: 0 0 3rem;
  line-height: 1.7;
  text-align: left;
}

@media (max-width: 768px) {
  .hero__headline,
  .hero__subtitle {
    text-align: center;
  }
  .hero__subtitle {
    margin: 0 auto 3rem;
  }
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 2rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground) / 0.8);
  font-family: var(--font-body);
}
.hero__features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: hsl(var(--gold));
  flex-shrink: 0;
}

/* ===================================================================
   PAIN SECTION
   =================================================================== */
.pain-section {
  padding: 5rem 0 5rem;
}

/* ── Banner Background Sections ──────────────────────────────── */
.banner-bg-section {
  position: relative;
  background-color: hsl(var(--secondary));
  background-image: url('images/banner/banner-desktop.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.banner-bg-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsl(var(--background) / 0.60) 0%,
    hsl(var(--secondary) / 0.50) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.banner-bg-section > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .banner-bg-section {
    background-image: url('images/banner/banner-mobile.jpg');
    background-attachment: scroll;
  }
}

.pain-section__inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pain-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: hsl(var(--foreground));
  text-align: center;
  margin-bottom: 0.75rem;
}

.pain-section__subtitle {
  font-family: var(--font-body);
  color: hsl(var(--muted-foreground));
  text-align: center;
  max-width: 28rem;
  margin: 0 auto 3.5rem;
  font-size: 0.875rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.pain-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.3s ease;
}
.pain-card:hover {
  border-color: hsl(var(--gold) / 0.3);
  box-shadow: 0 8px 30px hsl(var(--gold) / 0.05);
}
.pain-card h3 {
  font-size: 1rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}
.pain-card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

.pain-section__footer {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  margin-top: 3rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

@media (min-width: 768px) {
  .pain-section { padding: 7rem 0; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
}

/* ===================================================================
   DIFFERENTIAL SECTION
   =================================================================== */
.differential-section {
  padding: 5rem 0;
  background: hsl(var(--background));
}

.differential-section__inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.differential-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: hsl(var(--foreground));
  text-align: center;
  margin-bottom: 0.5rem;
}
.differential-section__subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  margin-bottom: 3.5rem;
}

.comparison-table {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
}
.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.comparison-header div {
  padding: 0.875rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.comparison-header div:first-child {
  background: hsl(var(--card));
  color: hsl(var(--muted-foreground));
}
.comparison-header div:last-child {
  background: hsl(var(--gold) / 0.12);
  color: hsl(var(--gold));
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid hsl(var(--border));
}
.comparison-cell {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
}
.comparison-cell--common {
  background: hsl(var(--card));
  color: hsl(var(--muted-foreground));
}
.comparison-cell--glowth {
  background: hsl(var(--gold) / 0.05);
  color: hsl(var(--foreground));
}
.comparison-cell--highlight {
  color: hsl(var(--gold));
  font-weight: 500;
}

.comparison-icon {
  width: 14px; height: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.comparison-icon--x { stroke: hsl(var(--muted-foreground) / 0.3); }
.comparison-icon--check { stroke: hsl(var(--gold)); }

.differential-section__footer {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
}

@media (min-width: 768px) {
  .differential-section { padding: 7rem 0; }
}

/* ===================================================================
   METHOD SECTION
   =================================================================== */
.method-section {
  padding: 5rem 0;
  position: relative;
}
.method-section__accent-left,
.method-section__accent-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, hsl(var(--gold) / 0.15), transparent);
}
.method-section__accent-left { left: 0; }
.method-section__accent-right { right: 0; }

.method-section__inner {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.method-section__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: hsl(var(--gold));
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.method-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.method-section__subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  max-width: 32rem;
  margin-bottom: 4rem;
  line-height: 1.7;
}

.method-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.method-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.3s;
}
.method-card:hover {
  border-color: hsl(var(--gold) / 0.3);
  box-shadow: 0 8px 30px hsl(var(--gold) / 0.05);
}

.method-card__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: hsl(var(--gold) / 0.35);
  display: block;
  margin-bottom: 0.5rem;
}
.method-card h3 {
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}
.method-card p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

.method-section__footer {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  margin-top: 3rem;
  font-style: italic;
}

@media (min-width: 768px) {
  .method-section { padding: 7rem 0; }
  .method-cards { grid-template-columns: repeat(3, 1fr); }
}

/* ===================================================================
   SOCIAL PROOF SECTION
   =================================================================== */
.social-proof-section {
  padding: 5rem 0;
  background: hsl(var(--background));
}

.social-proof-section__inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.social-proof-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: hsl(var(--foreground));
  text-align: center;
  margin-bottom: 3.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.stat {
  text-align: center;
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  color: hsl(var(--gold));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.stat__value.visible {
  opacity: 1;
  transform: translateY(0);
}
.stat__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
}

.social-proof__note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  font-style: italic;
  margin-bottom: 3.5rem;
}

.testimonial {
  max-width: 42rem;
  margin: 0 auto;
  background: hsl(var(--card));
  border-left: 2px solid hsl(var(--gold));
  border-radius: var(--radius);
  padding: 2rem;
}
.testimonial blockquote {
  font-family: var(--font-body);
  color: hsl(var(--foreground) / 0.8);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.testimonial cite {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-style: normal;
}

@media (min-width: 768px) {
  .social-proof-section { padding: 7rem 0; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===================================================================
   FOUNDERS SECTION
   =================================================================== */
.founders-section {
  padding: 5rem 0;
}

.founders-section__inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.founders-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: hsl(var(--foreground));
  text-align: center;
  margin-bottom: 3.5rem;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.founder-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.founder-card:hover {
  border-color: hsl(var(--gold) / 0.25);
}

.founder-avatar {
  width: 6rem; height: 6rem;
  border-radius: 50%;
  border: 2px solid hsl(var(--gold) / 0.6);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--gold) / 0.1);
  overflow: hidden;
}
.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card h3 {
  font-size: 1.25rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}
.founder-card__role {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: hsl(var(--gold));
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.founder-card__bio {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

.founders-quote {
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
}
.founders-quote p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: hsl(var(--foreground) / 0.8);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.founders-quote cite {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-style: normal;
}

@media (min-width: 768px) {
  .founders-section { padding: 7rem 0; }
  .founders-grid { grid-template-columns: 1fr 1fr; }
}

/* ===================================================================
   CTA / QUIZ SECTION
   =================================================================== */
.cta-section {
  padding: 5rem 0;
  background: hsl(var(--background));
}

.cta-section__inner {
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.cta-content h2 {
  font-size: clamp(1.875rem, 5vw, 2.75rem);
  color: hsl(var(--foreground));
  margin-bottom: 1.25rem;
}
.cta-content p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* ── Quiz Card ────────────────────────────────────────────────── */
.quiz-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem 2rem 2.5rem;
  width: 100%;
}

.quiz-header {
  text-align: center;
  margin-bottom: 2rem;
}
.quiz-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: hsl(var(--foreground));
  margin-bottom: 0.375rem;
}
.quiz-subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ── Progress Steps ───────────────────────────────────────────── */
.quiz-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
}
.quiz-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}
.quiz-step__dot {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  border: 2px solid hsl(var(--border));
  background: hsl(var(--background));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.quiz-step__dot span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: hsl(var(--muted-foreground));
  transition: color 0.3s;
}
.quiz-step.active .quiz-step__dot {
  border-color: hsl(var(--gold));
  background: hsl(var(--gold));
}
.quiz-step.active .quiz-step__dot span {
  color: hsl(var(--background));
}
.quiz-step.done .quiz-step__dot {
  border-color: hsl(var(--gold) / 0.6);
  background: hsl(var(--gold) / 0.15);
}
.quiz-step.done .quiz-step__dot span {
  color: hsl(var(--gold));
}
.quiz-step__label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  line-height: 1.3;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.quiz-step.active .quiz-step__label,
.quiz-step.done .quiz-step__label { opacity: 1; }
.quiz-step__line {
  flex: 1;
  height: 1px;
  background: hsl(var(--border));
  margin: 1rem 0.5rem 0;
  min-width: 2rem;
}

/* ── Panels ───────────────────────────────────────────────────── */
.quiz-panel {
  display: none;
  flex-direction: column;
  gap: 0.875rem;
  animation: fadeSlideIn 0.3s ease;
}
.quiz-panel.active { display: flex; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Inputs ───────────────────────────────────────────────────── */
.quiz-input,
.quiz-select {
  width: 100%;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 0.875rem 1.125rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.quiz-input::placeholder { color: hsl(var(--muted-foreground)); }
.quiz-input:focus,
.quiz-select:focus { border-color: hsl(var(--gold)); }
.quiz-select { 
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23817066' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.quiz-select option { background: hsl(var(--card)); color: hsl(var(--foreground)); }

.quiz-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: hsl(var(--foreground) / 0.85);
  font-weight: 500;
  margin-bottom: -0.25rem;
}

/* ── Radio Group ──────────────────────────────────────────────── */
.quiz-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.quiz-radio {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.125rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  background: hsl(var(--background));
}
.quiz-radio:hover {
  border-color: hsl(var(--gold) / 0.4);
  background: hsl(var(--gold) / 0.04);
}
.quiz-radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.125rem; height: 1.125rem;
  border: 2px solid hsl(var(--border));
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.2s;
  position: relative;
}
.quiz-radio input[type="radio"]:checked {
  border-color: hsl(var(--gold));
  background: hsl(var(--gold));
}
.quiz-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 0.375rem; height: 0.375rem;
  border-radius: 50%;
  background: hsl(var(--background));
}
.quiz-radio.selected {
  border-color: hsl(var(--gold) / 0.5);
  background: hsl(var(--gold) / 0.06);
}
.quiz-radio span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

/* ── Button ───────────────────────────────────────────────────── */
.quiz-btn {
  width: 100%;
  padding: 0.9375rem 1.25rem;
  background: hsl(var(--gold));
  color: hsl(var(--background));
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 0.5rem;
  transition: all 0.2s;
  margin-top: 0.25rem;
  letter-spacing: 0.01em;
}
.quiz-btn:hover:not(:disabled) {
  background: hsl(var(--gold-light));
  transform: translateY(-1px);
  box-shadow: 0 4px 20px hsl(var(--gold) / 0.25);
}
.quiz-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}
.quiz-btn:active:not(:disabled) { transform: scale(0.98); }

.quiz-security {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
}

/* ── Success State ────────────────────────────────────────────── */
.quiz-success {
  text-align: center;
  padding: 2rem 1rem;
}
.quiz-success__icon {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: hsl(var(--gold) / 0.15);
  border: 2px solid hsl(var(--gold) / 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: hsl(var(--gold));
  margin: 0 auto 1.5rem;
}
.quiz-success h3 {
  font-size: 1.25rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}
.quiz-success p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* ── Phone Prefix Wrapper ─────────────────────────────────────── */
.quiz-phone-wrapper {
  display: flex;
  align-items: stretch;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.quiz-phone-wrapper:focus-within {
  border-color: hsl(var(--gold));
}
.quiz-phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 0.875rem;
  background: hsl(var(--gold) / 0.1);
  border-right: 1px solid hsl(var(--border));
  color: hsl(var(--gold));
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  user-select: none;
  flex-shrink: 0;
}
.quiz-phone-wrapper .quiz-phone-input {
  border: none;
  border-radius: 0;
  flex: 1;
  min-width: 0;
}
.quiz-phone-wrapper .quiz-phone-input:focus {
  border-color: transparent;
  outline: none;
}

@media (min-width: 768px) {
  .cta-section { padding: 7rem 0; }
  .cta-section__inner { grid-template-columns: 1fr 1fr; }
}


/* ===================================================================
   FOOTER — Professional
   =================================================================== */
.footer {
  padding: 4rem 0 2rem;
  background: hsl(350 45% 5%);
  border-top: 1px solid hsl(var(--gold) / 0.15);
}

.footer__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top row: logo + nav columns */
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid hsl(var(--border));
}

.footer__brand {
  text-align: center;
}
.footer__brand img {
  height: 4.8rem;
  width: auto;
  margin: 0 auto 1rem;
}
.footer__brand-tagline {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--gold));
  margin-bottom: 1rem;
  font-style: italic;
}
.footer__brand-desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  max-width: 20rem;
  margin: 0 auto;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

.footer__column h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: hsl(var(--gold));
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer__column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer__column li a {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}
.footer__column li a:hover {
  color: hsl(var(--gold));
}

/* Social icons row */
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 0;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
  transition: all 0.2s;
}
.footer__social-link:hover {
  border-color: hsl(var(--gold) / 0.4);
  color: hsl(var(--gold));
  background: hsl(var(--gold) / 0.08);
}
.footer__social-link svg {
  width: 1rem; height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1.5rem;
  text-align: center;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: hsl(var(--muted-foreground) / 0.5);
  line-height: 1.5;
}

.footer__agency {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: hsl(var(--muted-foreground) / 0.4);
}
.footer__agency a {
  color: hsl(var(--gold) / 0.6);
  transition: color 0.2s;
}
.footer__agency a:hover {
  color: hsl(var(--gold));
}

@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: 1.4fr 1fr;
    text-align: left;
    gap: 4rem;
  }
  .footer__brand {
    text-align: left;
  }
  .footer__brand img {
    margin: 0 0 1rem 0;
  }
  .footer__brand-desc {
    margin: 0;
  }
  .footer__columns {
    text-align: left;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===================================================================
   WHATSAPP FAB & MODAL
   =================================================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
  transform: translateY(1rem);
  opacity: 0;
  pointer-events: none;
}
.whatsapp-fab:hover { background: #20BD5A; }
.whatsapp-fab:active { transform: scale(0.95) translateY(0) !important; }
.whatsapp-fab.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.whatsapp-fab svg {
  width: 1.5rem; height: 1.5rem;
  color: white;
}

/* Overlay */
.wa-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
}
.wa-overlay.open { display: block; }

/* Modal */
.wa-modal {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 50;
  width: calc(100vw - 3rem);
  max-width: 24rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: none;
}
.wa-modal.open { display: block; }

.wa-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.wa-modal__header h3 {
  font-size: 1rem;
  color: hsl(var(--foreground));
}
.wa-modal__close {
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
  padding: 0.25rem;
}
.wa-modal__close:hover { color: hsl(var(--foreground)); }
.wa-modal__close svg {
  width: 1rem; height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wa-modal__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wa-modal__input {
  width: 100%;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  outline: none;
  transition: border-color 0.2s;
}
.wa-modal__input::placeholder {
  color: hsl(var(--muted-foreground));
}
.wa-modal__input:focus {
  border-color: hsl(var(--gold));
}

.wa-modal__submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25D366;
  color: white;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}
.wa-modal__submit:hover { background: #20BD5A; }
.wa-modal__submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.wa-modal__submit:active { transform: scale(0.97); }
.wa-modal__submit svg {
  width: 1rem; height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wa-modal__note {
  font-size: 0.625rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  margin-top: 0.75rem;
}

/* ===================================================================
   HERO RESPONSIVE — hide <br> on mobile
   =================================================================== */
.hero__br-desktop {
  display: none;
}
@media (min-width: 640px) {
  .hero__br-desktop { display: inline; }
}
