:root {
  --ink: #171511;
  --muted: #665f55;
  --line: #e6ddd1;
  --paper: #fffdf8;
  --soft: #f7f0e7;
  --rose: #a8485f;
  --wine: #4e1926;
  --gold: #b9822e;
  --green: #1f8f58;
  --shadow: 0 18px 48px rgba(29, 24, 18, .14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.7; }
.skip-link { position: absolute; left: -999px; top: 12px; background: #fff; padding: 10px 14px; z-index: 20; }
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 248, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 221, 209, .75);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  height: 126px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand img { width: 116px; height: 116px; border-radius: 50%; object-fit: cover; }
.menu { display: flex; align-items: center; gap: 22px; margin-left: auto; font-size: 14px; font-weight: 700; color: #383129; }
.menu a:hover { color: var(--rose); }
.menu-phone { color: var(--rose); white-space: nowrap; }
.menu-toggle { display: none; margin-left: auto; border: 1px solid var(--line); background: #fff; border-radius: var(--radius); padding: 10px 12px; font-weight: 800; }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1;
}
.nav-cta, .button.primary { color: #fff; background: var(--green); box-shadow: 0 12px 26px rgba(31, 143, 88, .22); }
.button.ghost { color: var(--ink); background: rgba(255, 255, 255, .82); border: 1px solid rgba(255,255,255,.72); }
.button.ghost.dark { border-color: rgba(255,255,255,.25); color: #fff; background: rgba(255,255,255,.08); }
.nav-cta svg, .button svg, .floating-whatsapp svg, .social-link svg { width: 21px; height: 21px; fill: currentColor; flex: 0 0 auto; }

.hero {
  height: clamp(560px, calc(100svh - 126px), 680px);
  display: grid;
  grid-template-columns: minmax(16px, 1fr) minmax(320px, 1180px) minmax(16px, 1fr);
  align-items: center;
  overflow: hidden;
  background: #211713;
}
.hero-media { grid-column: 1 / -1; grid-row: 1; height: 100%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .52; filter: saturate(1.02) contrast(1.02) brightness(.82); }
.hero::after {
  content: "";
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: stretch;
  background:
    linear-gradient(90deg, rgba(28, 12, 16, .88), rgba(45, 22, 18, .64) 44%, rgba(45, 22, 18, .28) 76%, rgba(45, 22, 18, .16)),
    rgba(32, 16, 14, .18);
}
.hero-content {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 1;
  width: min(100%, 700px);
  align-self: center;
  padding: 0 0 48px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 900;
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1 { color: #fff; font-size: clamp(38px, 4.8vw, 58px); max-width: 720px; }
.hero-content > p:not(.eyebrow) { color: rgba(255,255,255,.86); font-size: 18px; max-width: 650px; margin-bottom: 0; }
.intent-band {
  width: min(1180px, calc(100% - 32px));
  margin: -18px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--line);
}
.intent-band div { background: #fff; padding: 24px; }
.intent-band strong { display: block; margin-bottom: 8px; font-size: 13px; text-transform: uppercase; color: var(--rose); }
.intent-band span { color: var(--muted); line-height: 1.55; }

.section { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 96px 0; }
.split { display: grid; grid-template-columns: 1fr .86fr; gap: 58px; align-items: center; }
.section-copy h2, .section-heading h2 { font-size: clamp(30px, 4vw, 48px); max-width: 820px; }
.section-copy p, .section-heading p { max-width: 740px; }
.text-link { display: inline-flex; margin-top: 12px; color: var(--rose); font-weight: 900; border-bottom: 2px solid currentColor; }
.feature-image { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--soft); }
.feature-image img { aspect-ratio: 1 / 1; object-fit: cover; }
.section-heading { margin-bottom: 34px; }
.section-heading p:last-child { margin-bottom: 0; }

.category-grid, .review-grid, .benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.category-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(29,24,18,.06);
}
.category-card img { width: 100%; aspect-ratio: 1 / .78; object-fit: cover; }
.category-card div { padding: 20px; }
.category-card h3, .benefit h3 { font-size: 21px; }
.category-card p, .benefit p, .review p { margin-bottom: 0; }

.compact { padding-top: 24px; }
.benefit-grid { grid-template-columns: repeat(3, 1fr); }
.benefit {
  padding: 28px;
  border-top: 4px solid var(--rose);
  background: var(--soft);
  border-radius: var(--radius);
}
.benefit span { display: block; margin-bottom: 22px; color: var(--gold); font-weight: 900; }

.reviews { background: linear-gradient(180deg, rgba(247,240,231,.72), rgba(255,253,248,0)); width: 100%; padding-left: max(16px, calc((100vw - 1180px) / 2)); padding-right: max(16px, calc((100vw - 1180px) / 2)); }
.review-grid { grid-template-columns: repeat(3, 1fr); }
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 28px rgba(29,24,18,.06);
}
.stars { color: var(--gold); font-size: 18px; letter-spacing: 0; margin-bottom: 14px; }
.review strong { display: block; margin-top: 18px; }

.faq-list { max-width: 880px; display: grid; gap: 12px; }
details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
summary { cursor: pointer; font-weight: 900; font-size: 18px; }
details p { margin-bottom: 0; }

.cta-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 88px;
  padding: 42px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--wine), #1c1210);
  color: #fff;
}
.cta-section h2 { color: #fff; font-size: clamp(30px, 4vw, 48px); }
.cta-section p:not(.eyebrow) { color: rgba(255,255,255,.78); max-width: 640px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

.site-footer { background: #171511; color: #fff; padding: 54px 0 24px; }
.footer-grid, .footer-bottom { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 36px; align-items: start; }
.footer-grid img { border-radius: 50%; margin-bottom: 16px; }
.footer-grid p, .footer-grid address { color: rgba(255,255,255,.72); line-height: 1.7; font-style: normal; }
.footer-grid strong { display: block; color: #fff; margin-bottom: 8px; }
.social-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 8px; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.68); font-size: 14px; }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(31, 143, 88, .36);
  z-index: 12;
}
.floating-whatsapp svg { width: 32px; height: 32px; }

.lgpd-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  width: min(760px, calc(100% - 32px));
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lgpd-banner p { margin: 0; }
.lgpd-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.lgpd-actions button, .lgpd-actions a { border: 0; border-radius: var(--radius); padding: 11px 14px; font-weight: 900; cursor: pointer; }
.lgpd-actions button { background: var(--ink); color: #fff; }
.lgpd-actions a { background: var(--soft); color: var(--ink); }

.privacy-page .site-header { position: static; }
.privacy-content { width: min(920px, calc(100% - 32px)); margin: 0 auto; padding: 80px 0; }
.privacy-content h1 { color: var(--ink); font-size: clamp(38px, 6vw, 62px); }
.privacy-content h2 { margin-top: 34px; font-size: 26px; }

@media (max-width: 920px) {
  .nav { height: 116px; }
  .brand img { width: 102px; height: 102px; }
  .menu-toggle { display: inline-flex; }
  .menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 116px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .menu.is-open { display: flex; }
  .privacy-page .menu { position: static; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: flex-end; margin-left: auto; box-shadow: none; border: 0; padding: 0; background: transparent; }
  .privacy-page .menu a { padding: 8px; font-size: 13px; }
  .menu a { padding: 13px; }
  .nav-cta { display: none; }
  .hero { grid-template-columns: 16px 1fr 16px; height: clamp(600px, calc(100svh - 116px), 720px); }
  .hero-media img { object-position: 58% center; }
  .hero-content { padding: 0 0 48px; }
  .intent-band, .split, .cta-section, .footer-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid, .benefit-grid { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .nav { height: 104px; }
  .brand img { width: 92px; height: 92px; }
  .menu { top: 104px; }
  .hero { height: clamp(640px, calc(100svh - 104px), 720px); }
  h1 { font-size: clamp(34px, 12vw, 44px); }
  .hero-content > p:not(.eyebrow) { font-size: 17px; }
  .button { width: 100%; }
  .intent-band { margin-top: 0; width: 100%; border-radius: 0; }
  .section { padding: 70px 0; }
  .category-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 30px 20px; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { width: 54px; height: 54px; }
}
