:root {
  --bg: #fbf7f4;
  --surface: #ffffff;
  --surface-2: #f3ece7;
  --text: #261d1d;
  --muted: #6f6262;
  --accent: #7a2432;
  --accent-2: #9d4352;
  --dark: #21191a;
  --line: #e6dcd7;
  --success: #1d7a4e;
  --shadow: 0 20px 60px rgba(66, 32, 38, 0.11);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; }
img { max-width: 100%; }
button, input, textarea { font: inherit; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -60px; background: var(--dark); color: #fff; padding: 10px 14px; border-radius: 10px; z-index: 9999; }
.skip-link:focus { top: 16px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 247, 244, 0.9);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(230, 220, 215, 0.75);
}

.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), #42151e); color: #fff; font-weight: 800; letter-spacing: .04em;
  box-shadow: 0 10px 25px rgba(122,36,50,.24);
}
.brand-text { display: grid; line-height: 1.12; }
.brand-text strong { font-size: .98rem; }
.brand-text small { color: var(--muted); font-size: .78rem; margin-top: 4px; }
.menu { display: flex; align-items: center; gap: 24px; }
.menu a { text-decoration: none; color: #4c3e40; font-weight: 650; font-size: .92rem; }
.menu a:hover { color: var(--accent); }
.menu-cta { background: var(--accent); color: white !important; padding: 11px 17px; border-radius: 999px; }
.menu-toggle { display: none; border: 1px solid var(--line); background: var(--surface); border-radius: 12px; width: 44px; height: 44px; font-size: 1.2rem; }

.hero { padding: 84px 0 70px; overflow: hidden; position: relative; }
.hero::before {
  content: ""; position: absolute; inset: -150px auto auto 50%; width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,36,50,.12), transparent 68%); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 72px; align-items: center; position: relative; }
.eyebrow { display: inline-block; color: var(--accent); font-size: .78rem; letter-spacing: .17em; text-transform: uppercase; font-weight: 800; margin-bottom: 14px; }
.eyebrow.light { color: #f4cbd1; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 5.5rem); line-height: .98; letter-spacing: -.055em; margin: 0 0 24px; max-width: 820px; }
.hero-copy > p { font-size: 1.13rem; color: var(--muted); max-width: 700px; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; text-decoration: none; font-weight: 800; border: 1px solid transparent; transition: .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 12px 26px rgba(122,36,50,.25); }
.btn-outline { border-color: var(--line); background: rgba(255,255,255,.7); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 20px; color: #5f5153; font-size: .88rem; }

.hero-card { background: var(--dark); color: #fff; border-radius: 30px; padding: 34px; box-shadow: var(--shadow); position: relative; overflow: hidden; min-height: 395px; display: flex; flex-direction: column; justify-content: center; }
.fabric-lines { position: absolute; inset: 0; opacity: .13; background-image: repeating-linear-gradient(135deg, transparent 0 16px, #fff 16px 17px); }
.hero-card > *:not(.fabric-lines) { position: relative; }
.card-kicker, .card-label { margin: 0 0 8px; color: #d8c8ca; font-size: .75rem; letter-spacing: .11em; text-transform: uppercase; font-weight: 800; }
.card-cnpj { font-size: clamp(1.65rem, 3vw, 2.5rem); letter-spacing: -.02em; }
.status-row { display: flex; gap: 10px; align-items: center; margin-top: 16px; color: #eee2e4; font-size: .92rem; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #54d59a; box-shadow: 0 0 0 6px rgba(84,213,154,.11); }
.hero-card hr { width: 100%; border: 0; border-top: 1px solid rgba(255,255,255,.13); margin: 28px 0; }
.hero-card p { margin-top: 0; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
.mini-grid div { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.09); border-radius: 16px; padding: 14px; display: grid; }
.mini-grid small { color: #cbbabd; margin-bottom: 3px; }

.section { padding: 94px 0; }
.section-soft { background: var(--surface-2); }
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; letter-spacing: -.04em; margin: 0; }
.section-heading p { color: var(--muted); max-width: 690px; }
.section-heading.center { text-align: center; max-width: 780px; margin: 0 auto 48px; }
.section-heading.center p { margin-inline: auto; }
.content-card, .data-card, .privacy-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 40px rgba(70,40,44,.05); }
.content-card { padding: 34px; font-size: 1.04rem; }
.content-card p:first-child { margin-top: 0; }
.content-card p:last-child { margin-bottom: 0; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: rgba(255,255,255,.8); border: 1px solid rgba(122,36,50,.09); border-radius: var(--radius); padding: 30px; }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; background: #fff; border-radius: 16px; color: var(--accent); font-size: 1.4rem; box-shadow: 0 12px 30px rgba(80,45,50,.09); }
.service-card h3 { margin: 20px 0 8px; font-size: 1.2rem; }
.service-card p { margin: 0; color: var(--muted); }

.data-card { margin-top: 40px; padding: 12px; }
.data-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0; }
.data-grid > div { padding: 22px; border-bottom: 1px solid var(--line); }
.data-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
.data-grid > div:nth-child(odd):not(.wide) { border-right: 1px solid var(--line); }
.data-grid .wide { grid-column: 1 / -1; }
.data-grid dt { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 800; margin-bottom: 5px; }
.data-grid dd { margin: 0; font-weight: 700; overflow-wrap: anywhere; }
.data-grid dd a { color: var(--accent); }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px; background: #e5f5ed; color: var(--success); font-size: .8rem; }

.section-accent { background: linear-gradient(135deg, #6c1f2c, #2f171b); color: #fff; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.contact-grid h2 { font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 1; letter-spacing: -.05em; margin: 0 0 18px; }
.contact-grid > div:first-child p { color: #e4d5d7; max-width: 560px; }
.contact-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); overflow: hidden; }
.contact-item { display: grid; text-decoration: none; padding: 22px 24px; border-bottom: 1px solid rgba(255,255,255,.11); transition: .2s ease; }
.contact-item:last-child { border-bottom: 0; }
a.contact-item:hover { background: rgba(255,255,255,.06); }
.contact-item span { color: #d9c6c9; font-size: .77rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 5px; }
.contact-item strong { overflow-wrap: anywhere; }

.privacy-wrap { display: grid; grid-template-columns: .72fr 1.28fr; gap: 56px; align-items: start; }
.privacy-card { padding: 34px; }
.privacy-card > p:first-child { margin-top: 0; }
.privacy-sections { display: grid; gap: 6px; margin-top: 28px; }
.privacy-sections > div { padding: 18px 0; border-top: 1px solid var(--line); }
.privacy-sections h3 { margin: 0 0 6px; font-size: 1rem; }
.privacy-sections p { margin: 0; color: var(--muted); }
.privacy-note { color: var(--muted); font-size: .85rem; margin-bottom: 0; }

.footer { background: #171214; color: #d7ccce; padding: 34px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 36px; align-items: center; }
.footer p { margin: 6px 0 0; font-size: .82rem; color: #a99b9e; }
.footer-brand { font-weight: 800; color: #fff; }
.footer-brand span { color: #b55968; }
.footer-right { display: grid; gap: 5px; text-align: right; font-size: .8rem; }
.footer-right a { color: #fff; }

.back-top { position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--accent); color: white; box-shadow: 0 12px 30px rgba(122,36,50,.3); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s ease; }
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .menu { position: absolute; top: 78px; left: 20px; right: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 16px; display: none; flex-direction: column; align-items: stretch; gap: 5px; box-shadow: var(--shadow); }
  .menu.open { display: flex; }
  .menu a { padding: 10px 12px; }
  .menu-cta { text-align: center; margin-top: 4px; }
  .hero-grid, .split, .contact-grid, .privacy-wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding-top: 58px; }
  .cards-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .brand-text small { display: none; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .hero-card { padding: 26px; min-height: 360px; }
  .data-grid { grid-template-columns: 1fr; }
  .data-grid > div, .data-grid > div:nth-child(odd):not(.wide) { border-right: 0; border-bottom: 1px solid var(--line); }
  .data-grid > div:last-child { border-bottom: 0; }
  .data-grid .wide { grid-column: auto; }
  .hero-actions .btn { width: 100%; }
  .contact-item { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
