/* ==========================================================================
   KDermaFlow Home Care — Design System & Estilos Globais
   Paleta: Oliva Profundo, Oliva Suave, Rose Gold, Fundo Perolado, Dourado
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Cores Principais KDermaFlow */
  --color-oliva-profundo: #3D4A35;
  --color-oliva-escuro: #56664D;
  --color-oliva-medio: #6B7B61;
  --color-oliva-suave: #8F9E85;
  --color-oliva-ultra-claro: #EBF0E6;

  --color-rose-gold: #B76E79;
  --color-rose-gold-light: #DF9DA5;
  --color-rose-gold-fundo: #FBF0F1;

  --color-dourado: #D4AF37;
  --color-dourado-claro: #F5E8C7;

  --color-fundo-perolado: #F7F4EF;
  --color-fundo-puro: #FFFFFF;
  --color-borda-suave: #E2DDD3;
  --color-borda-forte: #CCC6BA;

  --color-texto-principal: #2B3326;
  --color-texto-corpo: #4A5545;
  --color-texto-mutado: #7A8675;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(61, 74, 53, 0.05);
  --shadow-md: 0 8px 24px rgba(61, 74, 53, 0.08);
  --shadow-lg: 0 16px 40px rgba(61, 74, 53, 0.12);
  --shadow-rose: 0 8px 25px rgba(183, 110, 121, 0.25);
  --shadow-glow: 0 0 30px rgba(183, 110, 121, 0.15);

  /* Transições & Raios */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset Básico */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--color-fundo-perolado);
  color: var(--color-texto-corpo);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--color-oliva-profundo);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(247, 244, 239, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 221, 211, 0.6);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-oliva-profundo);
  letter-spacing: -0.5px;
}

.brand-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-oliva-profundo), var(--color-oliva-escuro));
  color: var(--color-fundo-puro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(61, 74, 53, 0.2);
}

.brand-logo span {
  color: var(--color-rose-gold);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-texto-corpo);
  position: relative;
}

.nav-link:hover {
  color: var(--color-rose-gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-rose-gold), #A25E68);
  color: #FFFFFF;
  box-shadow: var(--shadow-rose);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(183, 110, 121, 0.35);
  background: linear-gradient(135deg, #C27883, var(--color-rose-gold));
}

.btn-secondary {
  background: var(--color-oliva-profundo);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--color-oliva-escuro);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-oliva-profundo);
  border: 1.5px solid var(--color-oliva-profundo);
}

.btn-outline:hover {
  background: var(--color-oliva-profundo);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-oliva-profundo);
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(223, 157, 165, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 20% 60%, rgba(143, 158, 133, 0.12) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(183, 110, 121, 0.12);
  color: var(--color-rose-gold);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(183, 110, 121, 0.25);
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--color-oliva-profundo);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-title span {
  color: var(--color-rose-gold);
  font-style: italic;
  font-weight: 600;
}

/* AEO Extraction Sentence Blockquote */
.aeo-block {
  font-size: 19px;
  line-height: 1.6;
  color: var(--color-texto-corpo);
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 3px solid var(--color-rose-gold);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-borda-suave);
}

.proof-item {
  display: flex;
  flex-direction: column;
}

.proof-num {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-oliva-profundo);
}

.proof-label {
  font-size: 13px;
  color: var(--color-texto-mutado);
}

/* Card Mockup Interativo no Hero */
.hero-visual {
  position: relative;
}

.app-card-preview {
  background: var(--color-fundo-puro);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-borda-suave);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.app-card-preview:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(61, 74, 53, 0.15);
}

.app-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.user-tag {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-oliva-suave);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.user-meta h4 {
  font-size: 16px;
  color: var(--color-oliva-profundo);
}

.user-meta p {
  font-size: 12px;
  color: var(--color-texto-mutado);
}

.nivel-badge-pill {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #E6CA65, #D4AF37);
  color: #3B2E05;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.dossie-score-box {
  background: var(--color-fundo-perolado);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--color-borda-suave);
}

.score-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-texto-mutado);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.score-status {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.score-status .value {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-oliva-profundo);
}

.score-status .status-tag {
  font-size: 14px;
  color: var(--color-rose-gold);
  font-weight: 600;
}

.routine-steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.routine-step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(247, 244, 239, 0.6);
  border: 1px solid rgba(226, 221, 211, 0.7);
  font-size: 14px;
}

.routine-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-oliva-suave);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* Float Floating Pills */
.float-card {
  position: absolute;
  background: white;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-borda-suave);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
}

.float-card-1 {
  top: -20px;
  right: -20px;
}

.float-card-2 {
  bottom: -20px;
  left: -20px;
  animation-delay: 2s;
}

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

/* ==========================================================================
   SEÇÃO DO PROBLEMA (PAS: Problem -> Agitate -> Solution)
   ========================================================================== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-rose-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--color-oliva-profundo);
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-texto-mutado);
  max-width: 650px;
  margin-bottom: 56px;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-card {
  background: var(--color-fundo-puro);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--color-borda-suave);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-rose-gold-light);
}

.problem-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-rose-gold-fundo);
  color: var(--color-rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.problem-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-oliva-profundo);
}

.problem-card p {
  font-size: 15px;
  color: var(--color-texto-corpo);
  line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO DE SOLUÇÃO & COMO FUNCIONA
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  background: var(--color-fundo-puro);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--color-borda-suave);
  text-align: left;
  transition: var(--transition-smooth);
}

.step-card:hover {
  border-color: var(--color-oliva-suave);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-rose-gold);
  background: var(--color-rose-gold-fundo);
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-oliva-profundo);
}

.step-card p {
  font-size: 14px;
  color: var(--color-texto-corpo);
}

/* ==========================================================================
   OS 3 PILARES: DOSSIÊ FACIAL, CAPILAR & COMBO DUO
   ========================================================================== */
.dossies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.dossie-card {
  background: var(--color-fundo-puro);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-borda-suave);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.dossie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dossie-card.featured {
  border: 2px solid var(--color-rose-gold);
  position: relative;
}

.featured-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--color-rose-gold), #A25E68);
  color: white;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: var(--shadow-rose);
}

.dossie-card-header {
  padding: 32px 28px 20px;
  border-bottom: 1px solid var(--color-borda-suave);
}

.dossie-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-oliva-ultra-claro);
  color: var(--color-oliva-profundo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.dossie-card.featured .dossie-icon-circle {
  background: var(--color-rose-gold-fundo);
  color: var(--color-rose-gold);
}

.dossie-card-header h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.dossie-card-header p {
  font-size: 14px;
  color: var(--color-texto-mutado);
}

.dossie-card-body {
  padding: 24px 28px;
  flex-grow: 1;
}

.dossie-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dossie-features-list li {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.dossie-features-list li i {
  color: var(--color-oliva-escuro);
  font-size: 16px;
  margin-top: 2px;
}

.dossie-card-footer {
  padding: 24px 28px 32px;
  background: rgba(247, 244, 239, 0.4);
  border-top: 1px solid var(--color-borda-suave);
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.price-currency {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-texto-corpo);
}

.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--color-oliva-profundo);
}

.price-period {
  font-size: 13px;
  color: var(--color-texto-mutado);
}

/* ==========================================================================
   TABELA COMPARATIVA / TABELA DE PREÇOS COM NÍVEIS DE GAMIFICAÇÃO
   ========================================================================== */
.gamification-showcase {
  background: var(--color-fundo-puro);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--color-borda-suave);
  box-shadow: var(--shadow-md);
  margin-bottom: 60px;
}

.gamification-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.gamification-levels-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.level-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-borda-suave);
  background: var(--color-fundo-perolado);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--color-texto-corpo);
}

.level-btn.active, .level-btn:hover {
  background: var(--color-oliva-profundo);
  color: white;
  border-color: var(--color-oliva-profundo);
}

.table-responsive {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.pricing-table th, .pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-borda-suave);
}

.pricing-table th {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-oliva-profundo);
  background: var(--color-fundo-perolado);
}

.pricing-table td {
  font-size: 15px;
}

.discount-badge {
  background: #E8F5E9;
  color: #2E7D32;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--color-fundo-puro);
  border: 1px solid var(--color-borda-suave);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--color-rose-gold);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-oliva-profundo);
  user-select: none;
}

.faq-icon {
  font-size: 20px;
  color: var(--color-rose-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  transition: max-height 0.4s ease-in-out;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--color-texto-corpo);
  line-height: 1.65;
}

/* ==========================================================================
   CHECKOUT MODAL / REVENUECAT WEB BILLING
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 51, 38, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: var(--color-fundo-puro);
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--color-borda-suave);
  position: relative;
  animation: modalEnter 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalEnter {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-fundo-perolado);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-texto-mutado);
  font-size: 18px;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--color-borda-suave);
  color: var(--color-oliva-profundo);
}

.modal-title {
  font-size: 26px;
  margin-bottom: 8px;
  color: var(--color-oliva-profundo);
}

.modal-desc {
  font-size: 14px;
  color: var(--color-texto-mutado);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-oliva-profundo);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-borda-suave);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--color-rose-gold);
  box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.15);
}

.modal-price-summary {
  background: var(--color-fundo-perolado);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-price-summary span {
  font-weight: 600;
  color: var(--color-oliva-profundo);
}

.modal-price-summary .modal-final-val {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-rose-gold);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--color-oliva-profundo);
  color: #E2DDD3;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  color: #FFFFFF;
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #CCC6BA;
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #CCC6BA;
  font-size: 14px;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(226, 221, 211, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #AAA394;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 42px;
  }
  .problem-grid, .dossies-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 34px;
  }
  .hero-section {
    padding: 120px 0 60px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
