:root {
  --roxo:   #3D1A0E;
  --roxo2:  #5C2A18;
  --rosa:   #C9897A;
  --rosa2:  #E2C5B9;
  --creme:  #FDF8F5;
  --lilas:  #F5EDE8;
  --texto:  #2A1208;
  --muted:  #9A7A6E;
  --branco: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--creme); color: var(--texto); overflow-x: hidden; }

/* ── NAV ── */
#navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,248,245,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,137,122,0.15);
  padding: 0 3rem;
}
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; height: 140px; gap: 2rem; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 130px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 1.5rem; flex: 1; justify-content: center; }
.nav-links a { font-size: 14px; color: var(--muted); text-decoration: none; font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: var(--texto); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-login { padding: 9px 22px; border-radius: 100px; font-size: 14px; font-weight: 500; text-decoration: none; color: var(--roxo); border: 1.5px solid rgba(61,26,14,0.2); transition: all 0.2s; }
.nav-login:hover { background: var(--lilas); border-color: var(--roxo); }
.nav-cta { padding: 9px 22px; border-radius: 100px; font-size: 14px; font-weight: 500; text-decoration: none; background: var(--roxo); color: white; transition: all 0.25s; box-shadow: 0 4px 20px rgba(61,26,14,0.25); }
.nav-cta:hover { background: var(--roxo2); transform: translateY(-1px); }

/* ── BOLHAS ── */
.bubble { position: absolute; border-radius: 50%; background: linear-gradient(135deg, rgba(201,137,122,0.12), rgba(61,26,14,0.06)); animation: float 8s ease-in-out infinite; pointer-events: none; }
.bubble:nth-child(1) { width: 320px; height: 320px; top: 40px; right: -60px; animation-delay: 0s; }
.bubble:nth-child(2) { width: 180px; height: 180px; top: 60%; left: -40px; animation-delay: -3s; }
.bubble:nth-child(3) { width: 100px; height: 100px; top: 25%; left: 6%; animation-delay: -6s; opacity: 0.5; }
.bubble:nth-child(4) { width: 60px; height: 60px; top: 70%; right: 8%; animation-delay: -2s; opacity: 0.4; }
@keyframes float { 0%,100%{transform:translateY(0) rotate(0deg)} 33%{transform:translateY(-18px) rotate(3deg)} 66%{transform:translateY(10px) rotate(-2deg)} }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 2rem 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 15% 20%, rgba(201,137,122,0.08) 0%, transparent 70%), radial-gradient(ellipse 50% 60% at 85% 15%, rgba(61,26,14,0.05) 0%, transparent 70%); pointer-events: none; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: white; border: 1px solid rgba(201,137,122,0.25); border-radius: 100px; padding: 6px 18px; font-size: 13px; color: var(--rosa); font-weight: 500; margin-bottom: 36px; box-shadow: 0 2px 12px rgba(201,137,122,0.12); animation: fadeUp 0.8s ease both; }
.hero-badge::before { content: '✦'; font-size: 10px; }

.hero-titulo { font-family: 'Cormorant Garamond', serif; font-size: clamp(52px, 8vw, 96px); font-weight: 300; line-height: 1.05; color: var(--roxo); letter-spacing: -0.03em; margin-bottom: 24px; max-width: 900px; animation: fadeUp 0.8s ease 0.1s both; }
.hero-titulo em { font-style: italic; color: var(--rosa); }

.hero-sub { font-size: clamp(16px, 2vw, 20px); color: var(--muted); line-height: 1.7; max-width: 520px; margin: 0 auto 48px; font-weight: 300; animation: fadeUp 0.8s ease 0.2s both; }

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.8s ease 0.3s both; }
.btn-primary-hero { padding: 16px 36px; border-radius: 100px; font-size: 15px; font-weight: 500; text-decoration: none; background: linear-gradient(135deg, #C9897A, #A0604F); color: white; box-shadow: 0 8px 32px rgba(201,137,122,0.4); transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary-hero:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,137,122,0.5); }
.btn-outline-hero { padding: 16px 36px; border-radius: 100px; font-size: 15px; font-weight: 500; text-decoration: none; background: transparent; color: var(--roxo); border: 1.5px solid rgba(61,26,14,0.25); transition: all 0.3s; }
.btn-outline-hero:hover { background: var(--roxo); color: white; transform: translateY(-2px); }

.hero-stats { display: flex; gap: 48px; justify-content: center; margin-top: 72px; padding-top: 48px; border-top: 1px solid rgba(61,26,14,0.08); animation: fadeUp 0.8s ease 0.4s both; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; color: var(--roxo); line-height: 1; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── COMO FUNCIONA ── */
.como-funciona { padding: 120px 3rem; background: #3D1A0E; position: relative; overflow: hidden; }
.como-funciona::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,137,122,0.6), transparent); }
.section-label { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; margin-bottom: 16px; }
.section-label.light { color: rgba(255,255,255,0.4); }
.section-label.dark { color: var(--rosa); }
.section-titulo { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.1; letter-spacing: -0.02em; }
.cf-header { text-align: center; margin-bottom: 80px; }
.cf-titulo { font-size: clamp(40px, 5vw, 64px); color: white; }
.cf-sub { font-size: 17px; color: rgba(255,255,255,0.5); margin-top: 16px; font-weight: 300; }
.steps { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.step { padding: 0 20px; text-align: center; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(201,137,122,0.4); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; position: relative; z-index: 1; transition: all 0.3s; }
.step:hover .step-num { background: rgba(201,137,122,0.2); border-color: var(--rosa); transform: scale(1.1); }
.step-icon { font-size: 24px; }
.step-titulo { font-size: 15px; font-weight: 500; color: white; margin-bottom: 10px; }
.step-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ── FEATURES ── */
.features-section { padding: 120px 3rem; background: var(--creme); }
.features-header { text-align: center; margin-bottom: 80px; }
.features-titulo { font-size: clamp(40px, 5vw, 64px); color: var(--roxo); }
.features-sub { font-size: 17px; color: var(--muted); margin-top: 16px; font-weight: 300; }
.features-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature-card { background: white; border-radius: 24px; padding: 36px 32px; border: 1px solid rgba(45,10,92,0.06); transition: all 0.3s; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--rosa), var(--roxo2)); opacity: 0; transition: opacity 0.3s; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(45,10,92,0.1); }
.feature-card:hover::before { opacity: 1; }
.feature-card.destaque { grid-column: span 2; background: linear-gradient(135deg, #3D1A0E, #5C2A18); border: none; }
.feature-card.destaque .feature-titulo { color: white; }
.feature-card.destaque .feature-desc { color: rgba(255,255,255,0.6); }
.feature-card.destaque .feature-icon-wrap { background: rgba(255,255,255,0.1); }
.feature-icon-wrap { width: 52px; height: 52px; border-radius: 14px; background: var(--lilas); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.feature-titulo { font-size: 17px; font-weight: 500; color: var(--roxo); margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── DEPOIMENTOS ── */
.depoimentos { padding: 120px 3rem; background: white; }
.dep-header { text-align: center; margin-bottom: 64px; }
.dep-titulo { font-size: clamp(36px, 4vw, 54px); color: var(--roxo); }
.dep-sub { font-size: 17px; color: var(--muted); margin-top: 12px; font-weight: 300; }
.dep-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.dep-card { background: var(--creme); border-radius: 20px; padding: 28px; border: 1px solid rgba(45,10,92,0.06); transition: transform 0.3s; }
.dep-card:hover { transform: translateY(-4px); }
.dep-quote { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-style: italic; font-weight: 300; color: var(--texto); line-height: 1.7; margin-bottom: 20px; }
.dep-quote::before { content: '"'; color: var(--rosa); font-size: 28px; line-height: 0; vertical-align: -10px; margin-right: 4px; }
.dep-autor { display: flex; align-items: center; gap: 12px; }
.dep-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--rosa), var(--roxo2)); display: flex; align-items: center; justify-content: center; font-size: 16px; color: white; font-weight: 600; flex-shrink: 0; }
.dep-nome { font-size: 14px; font-weight: 500; color: var(--texto); }
.dep-cargo { font-size: 12px; color: var(--muted); }

/* ── FAQ ── */
.faq-section { padding: 120px 3rem; background: var(--creme); }
.faq-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.faq-titulo { font-size: clamp(36px, 4vw, 52px); color: var(--roxo); margin-bottom: 32px; }
.faq-item { border-bottom: 1px solid rgba(45,10,92,0.08); }
.faq-pergunta { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 16px 0; background: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; color: var(--texto); text-align: left; transition: color 0.2s; }
.faq-pergunta:hover { color: var(--rosa); }
.faq-arrow { font-size: 22px; color: var(--rosa); font-weight: 300; transition: transform 0.3s; flex-shrink: 0; }
.faq-pergunta.open .faq-arrow { transform: rotate(45deg); }
.faq-resposta { font-size: 14px; color: var(--muted); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.faq-resposta.open { max-height: 200px; padding-bottom: 16px; }
.faq-cta-box { background: white; border-radius: 24px; padding: 40px; text-align: center; border: 1px solid rgba(45,10,92,0.08); box-shadow: 0 8px 32px rgba(45,10,92,0.06); }
.faq-cta-icon { font-size: 40px; display: block; margin-bottom: 16px; }
.faq-cta-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--roxo); margin-bottom: 10px; }
.faq-cta-box p { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.faq-nota { font-size: 12px; color: var(--muted); margin-top: 12px; }

/* ── CTA ── */
.cta-section { padding: 120px 3rem; background: linear-gradient(135deg, #3D1A0E 0%, #6B3020 100%); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,137,122,0.2), transparent); }
.cta-titulo { font-family: 'Cormorant Garamond', serif; font-size: clamp(44px, 6vw, 80px); font-weight: 300; color: white; line-height: 1.1; margin-bottom: 20px; position: relative; }
.cta-titulo em { font-style: italic; color: var(--rosa2); }
.cta-sub { font-size: 18px; color: rgba(255,255,255,0.6); margin-bottom: 48px; font-weight: 300; position: relative; }
.btn-cta { display: inline-flex; align-items: center; gap: 10px; padding: 18px 44px; border-radius: 100px; font-size: 16px; font-weight: 500; text-decoration: none; background: white; color: var(--roxo); box-shadow: 0 8px 40px rgba(0,0,0,0.2); transition: all 0.3s; position: relative; }
.btn-cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 50px rgba(0,0,0,0.3); }
.btn-cta-arrow { font-size: 18px; transition: transform 0.3s; }
.btn-cta:hover .btn-cta-arrow { transform: translateX(4px); }

/* ── FOOTER ── */
footer { background: #1A0A06; padding: 60px 3rem 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-img { height: 80px; width: auto; object-fit: contain; margin-bottom: 12px; opacity: 0.85; }
.footer-slogan { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-titulo { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.35); text-transform: uppercase; margin-bottom: 16px; font-weight: 500; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--rosa2); }
.footer-bottom { max-width: 1200px; margin: 0 auto; text-align: center; padding: 20px 0; font-size: 13px; color: rgba(255,255,255,0.25); }

/* ── ANIMAÇÕES ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVO ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.destaque { grid-column: span 1; }
  .faq-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  #navbar { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-logo-img { height: 52px; }
  .hero, .como-funciona, .features-section, .depoimentos, .faq-section, .cta-section { padding-left: 1.5rem; padding-right: 1.5rem; }
  .steps { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .dep-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
}