*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --cream:    #F8F5F0;
  --cream2:   #F2EDE5;
  --cream3:   #EAE3D8;
  --brown:    #8B6F5C;
  --brown2:   #6B5244;
  --dark:     #1C1917;
  --dark2:    #2C2420;
  --mid:      #6B6460;
  --muted:    #A89F9A;
  --border:   rgba(139,111,92,0.18);
  --border2:  rgba(139,111,92,0.32);
  --gold:     #C9A96E;
  --gold2:    #A8854A;
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
  --radius:   12px;
  --ease:     cubic-bezier(0.4,0,0.2,1);
  --shadow:   0 4px 24px rgba(28,25,23,0.08);
  --shadow2:  0 12px 48px rgba(28,25,23,0.14);
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream2); }
::-webkit-scrollbar-thumb { background: var(--brown); border-radius: 3px; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem; height: 72px;
  background: rgba(248,245,240,0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}
nav.scrolled { box-shadow: 0 2px 20px rgba(28,25,23,0.08); }

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 40px; width: auto; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--mid); text-decoration: none;
  padding: 8px 16px; border-radius: 8px; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--dark); background: var(--cream2); }
.nav-ctas { display: flex; align-items: center; gap: 8px; }

.btn-outline {
  padding: 9px 20px; font-family: var(--sans); font-size: 14px; font-weight: 400;
  color: var(--dark2); background: transparent; border: 1px solid var(--border2);
  border-radius: 8px; cursor: pointer; text-decoration: none;
  transition: all 0.2s var(--ease); display: inline-flex; align-items: center;
}
.btn-outline:hover { background: var(--cream2); border-color: var(--brown); }

.btn-solid {
  padding: 9px 22px; font-family: var(--sans); font-size: 14px; font-weight: 500;
  color: var(--cream); background: var(--dark); border: 1px solid var(--dark);
  border-radius: 8px; cursor: pointer; text-decoration: none;
  transition: all 0.2s var(--ease); display: inline-flex; align-items: center;
}
.btn-solid:hover { background: var(--dark2); border-color: var(--dark2); }

/* ── 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-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,169,110,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(139,111,92,0.07) 0%, transparent 55%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 16px; background: var(--cream2); border: 1px solid var(--border2);
  border-radius: 100px; font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; color: var(--brown2); margin-bottom: 2rem;
  position: relative; z-index: 1;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(0.8); }
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(42px, 6.5vw, 76px); font-weight: 400;
  line-height: 1.1; color: var(--dark); max-width: 820px; margin-bottom: 1.75rem;
  letter-spacing: -0.02em; position: relative; z-index: 1;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--brown) 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
  font-size: 18px; font-weight: 300; color: var(--mid); max-width: 520px;
  line-height: 1.8; margin-bottom: 3rem; position: relative; z-index: 1;
}
.hero-actions { display: flex; gap: 12px; align-items: center; position: relative; z-index: 1; }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px;
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  color: var(--cream); background: var(--dark); border: none; border-radius: var(--radius);
  cursor: pointer; text-decoration: none;
  transition: all 0.25s var(--ease); box-shadow: 0 4px 20px rgba(28,25,23,0.25);
}
.btn-hero-primary:hover { background: var(--dark2); transform: translateY(-1px); box-shadow: 0 8px 32px rgba(28,25,23,0.3); }
.btn-hero-primary svg { width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:2; }

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px;
  font-family: var(--sans); font-size: 15px; font-weight: 400; color: var(--mid);
  background: transparent; border: 1px solid var(--border2); border-radius: var(--radius);
  cursor: pointer; transition: all 0.25s var(--ease);
}
.btn-hero-ghost:hover { color: var(--dark); border-color: var(--brown); background: var(--cream2); }

.hero-stats {
  display: flex; gap: 3rem; align-items: center; margin-top: 4.5rem;
  padding-top: 3rem; border-top: 1px solid var(--border); position: relative; z-index: 1;
}
.hero-stat-num { font-family: var(--serif); font-size: 32px; font-weight: 400; color: var(--dark); line-height: 1; }
.hero-stat-lbl { font-size: 12px; font-weight: 400; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; margin-top: 4px; }
.hero-stat-sep { width:1px; height:40px; background: var(--border2); }

/* ── SECTIONS ── */
.section { padding: 7rem 4rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold2); display: flex; align-items: center; gap: 10px; margin-bottom: 1.25rem;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--gold2); }
.section-title {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 48px); font-weight: 400;
  line-height: 1.2; color: var(--dark); letter-spacing: -0.01em; margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--brown); }
.section-desc { font-size: 17px; font-weight: 300; color: var(--mid); max-width: 520px; line-height: 1.8; }

/* ── NICHOS ── */
.nichos-bg { background: var(--cream2); }
.nichos-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3.5rem; gap: 2rem; flex-wrap: wrap; }
.nicho-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--border); border: 1.5px solid var(--border2); border-radius: 20px; overflow: hidden; }
.nicho-card { background: var(--cream); padding: 2.25rem 2rem; display: flex; flex-direction: column; gap: 1rem; transition: background 0.25s var(--ease); cursor: default; position: relative; overflow: hidden; }
.nicho-card::after { content: ''; position: absolute; bottom:0; left:0; right:0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--brown)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.nicho-card:hover { background: #fff; }
.nicho-card:hover::after { transform: scaleX(1); }
.nicho-icon-wrap { width: 48px; height: 48px; background: var(--cream2); border: 1px solid var(--border2); border-radius: 12px; display: flex; align-items: center; justify-content: center; transition: background 0.25s; }
.nicho-card:hover .nicho-icon-wrap { background: var(--cream3); }
.nicho-icon-wrap svg { width: 22px; height: 22px; stroke: var(--brown2); fill: none; stroke-width: 1.5; }
.nicho-tag { display: inline-block; padding: 2px 10px; background: var(--cream3); border-radius: 100px; font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown2); margin-bottom: 4px; }
.nicho-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--dark); line-height: 1.3; }
.nicho-card p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.65; flex: 1; }

/* ── COMO FUNCIONA ── */
.como-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.steps-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0; }
.step-item { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.75rem 0; border-bottom: 1px solid var(--border); position: relative; }
.step-item:last-child { border-bottom: none; }
.step-num-wrap { flex-shrink: 0; width: 40px; height: 40px; border: 1.5px solid var(--border2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 15px; font-weight: 400; color: var(--brown); background: var(--cream); position: relative; z-index: 1; transition: all 0.25s; }
.step-item:hover .step-num-wrap { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.step-content h4 { font-family: var(--serif); font-size: 17px; font-weight: 400; color: var(--dark); margin-bottom: 0.3rem; }
.step-content p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.65; }
.como-visual { background: var(--cream2); border: 1px solid var(--border2); border-radius: 24px; padding: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.mock-header { display: flex; align-items: center; gap: 10px; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.mock-dot { width:10px; height:10px; border-radius:50%; }
.mock-qr { aspect-ratio: 1; background: var(--cream3); border: 1px dashed var(--border2); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 2rem; }
.mock-qr-icon { font-family: var(--serif); font-size: 48px; color: var(--muted); }
.mock-qr p { font-size: 12px; color: var(--muted); text-align: center; line-height: 1.5; }
.mock-msg { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.1rem; }
.mock-msg-name { font-size: 12px; font-weight: 500; color: var(--brown2); margin-bottom: 4px; }
.mock-msg-text { font-size: 13px; color: var(--mid); line-height: 1.55; font-style: italic; }
.mock-msg-time { font-size: 11px; color: var(--muted); margin-top: 6px; }

/* ── DEPOIMENTOS ── */
.dep-bg { background: var(--dark); }
.dep-header { text-align: center; margin-bottom: 4rem; }
.dep-header .section-label { justify-content: center; color: var(--gold); }
.dep-header .section-label::before { background: var(--gold); }
.dep-header .section-title { color: var(--cream); }
.dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.dep-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; transition: border-color 0.25s; }
.dep-card:hover { border-color: rgba(201,169,110,0.35); }
.dep-stars { display: flex; gap: 3px; }
.dep-star { color: var(--gold); font-size: 14px; }
.dep-quote { font-family: var(--serif); font-size: 16px; font-style: italic; color: rgba(248,245,240,0.85); line-height: 1.7; flex: 1; }
.dep-author { display: flex; align-items: center; gap: 12px; }
.dep-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(201,169,110,0.2); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 16px; color: var(--gold); }
.dep-name { font-size: 14px; font-weight: 500; color: var(--cream); }
.dep-role { font-size: 12px; color: rgba(248,245,240,0.45); }

/* ── CTA FINAL ── */
.cta-final { text-align: center; padding: 7rem 4rem; background: linear-gradient(180deg, var(--cream) 0%, var(--cream2) 100%); }
.cta-final-box { max-width: 620px; margin: 0 auto; background: #fff; border: 1px solid var(--border2); border-radius: 24px; padding: 4rem 3.5rem; box-shadow: var(--shadow2); }
.cta-final-box .section-label { justify-content: center; }
.cta-final-box .section-title { margin-bottom: 0.75rem; }
.cta-final-desc { font-size: 16px; font-weight: 300; color: var(--mid); line-height: 1.7; margin-bottom: 2.5rem; }
.cta-input-group { display: flex; gap: 8px; margin-bottom: 1rem; }
.cta-input { flex: 1; padding: 13px 16px; font-family: var(--sans); font-size: 14px; background: var(--cream); border: 1px solid var(--border2); border-radius: 10px; color: var(--dark); outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.cta-input:focus { border-color: var(--brown); box-shadow: 0 0 0 3px rgba(139,111,92,0.12); }
.cta-input::placeholder { color: var(--muted); }
.cta-note { font-size: 12px; color: var(--muted); }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 4rem; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }
.footer-logo-img { height: 36px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-copy { font-size: 13px; font-weight: 300; color: rgba(248,245,240,0.4); margin-top: 6px; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 13px; color: rgba(248,245,240,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }

/* ── UTILITIES ── */
.text-center { text-align: center; }

/* ── RESPONSIVO ── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .section { padding: 4rem 1.5rem; }
  .nicho-grid { grid-template-columns: repeat(2, 1fr); }
  .como-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .dep-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .cta-final { padding: 4rem 1.5rem; }
  .cta-final-box { padding: 2.5rem 1.5rem; }
  .cta-input-group { flex-direction: column; }
  footer { padding: 2.5rem 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .nicho-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(34px, 9vw, 52px); }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }
}