:root {
  --brand-red: #c51f2f;
  --brand-red-dark: #9f1724;
  --white: #ffffff;
  --ink: #111111;
  --muted: #5b5b5b;
  --surface: #f6f6f6;
  --line: #e5e5e5;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(0,0,0,.08);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.container { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.section { padding: clamp(64px, 8vw, 112px) 0; }
.section-alt { background: var(--surface); }

/* Regularidade Visual */
.section-header {
  text-align: center;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.eyebrow { margin: 0 0 12px; color: var(--brand-red); font-weight: 800; letter-spacing: .12em; font-size: .78rem; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -.03em; margin-top: 0; margin-bottom: 16px; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); max-width: 700px; margin-inline: auto; }
h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: 700px; margin-inline: auto; }
h3 { font-size: 1.15rem; margin-bottom: 8px; }
p { color: var(--muted); margin-top: 0; margin-bottom: 16px; }
.lead { font-size: clamp(1.08rem, 2vw, 1.35rem); max-width: 680px; margin-inline: auto; }
.section-header p:last-child { margin-bottom: 0; }

.skip-link { position: fixed; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: var(--white); padding: 10px 14px; }
.skip-link:focus { top: 12px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font-weight: 900; text-decoration: none; letter-spacing: -.02em; }
.brand img { max-height: 40px; width: auto; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav > a:not(.button) { text-decoration: none; font-weight: 650; font-size: .94rem; }
.menu-button { display: none; }

.hero { padding: clamp(80px, 12vw, 160px) 0 clamp(64px, 8vw, 100px); }
.hero-stack { display: flex; flex-direction: column; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 16px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--brand-red);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  border: 2px solid var(--brand-red);
  transition: transform 0.15s ease, background 0.15s ease;
}
.button:hover { background: var(--brand-red-dark); border-color: var(--brand-red-dark); transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.button-small { min-height: 40px; padding: 8px 16px; }
.button-secondary { background: var(--white); color: var(--ink); border-color: var(--ink); }
.button-secondary:hover { background: var(--surface); border-color: var(--ink); }
.button-light { background: var(--white); color: var(--brand-red); border-color: var(--white); }
.button-light:hover { background: var(--surface); border-color: var(--surface); }

.button-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.button-whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
}

.button-phone {
  background: var(--brand-red);
  color: var(--white);
  border-color: var(--brand-red);
}
.button-phone:hover {
  background: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
}

@keyframes pulse-soft {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (prefers-reduced-motion: no-preference) {
  .button-whatsapp {
    animation: pulse-soft 2.5s infinite ease-out;
  }
}

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-grid article, .info-card {
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.benefit-grid article p { margin-bottom: 0; }

.category-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.category-list li { padding: 22px 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); font-weight: 750; text-align: center; display: flex; align-items: center; justify-content: center; min-height: 80px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 64px); align-items: start; }
.two-col > div { display: flex; flex-direction: column; }
.two-col .section-header { text-align: left; align-items: flex-start; margin-inline: 0; margin-bottom: 32px; }
.two-col .section-header h2 { margin-inline: 0; }
.two-col .section-header p { margin-inline: 0; }
.two-col .actions { justify-content: flex-start; }

.info-card { text-align: center; align-items: center; padding: 40px 32px; }
.info-card strong { display: block; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--brand-red); margin-bottom: 8px; }
.info-card a, .info-card span { font-size: 1.25rem; font-weight: 700; color: var(--ink); text-decoration: none; }
.info-card strong:not(:first-child) { margin-top: 32px; }

.map-container { width: 100%; border-radius: var(--radius); overflow: hidden; height: 380px; border: 1px solid var(--line); background: var(--surface); }
.map-container iframe { width: 100%; height: 100%; border: none; }

.final-cta { padding: clamp(80px, 10vw, 120px) 0; background: var(--brand-red); color: var(--white); text-align: center; }
.final-cta h2 { color: var(--white); }
.final-cta p { color: rgba(255,255,255,.9); margin-bottom: 32px; font-size: 1.15rem; }

.site-footer { padding: 48px 0; border-top: 1px solid var(--line); background: var(--white); }
.footer-grid { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-grid > div:last-child { display: flex; flex-direction: column; gap: 12px; }
.footer-grid a { color: var(--muted); text-decoration: none; font-weight: 500; }
.footer-grid a:hover { color: var(--brand-red); text-decoration: underline; }

.privacy-content { max-width: 800px; margin-inline: auto; padding: 40px 0; }
.privacy-content h1 { margin-bottom: 32px; }
.privacy-content h2 { font-size: 1.5rem; margin-top: 40px; margin-bottom: 16px; border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.privacy-content p, .privacy-content ul { margin-bottom: 16px; color: var(--muted); }
.privacy-content strong { color: var(--ink); }

@media (max-width: 992px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .category-list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .menu-button { display: inline-flex; background: transparent; border: 1px solid var(--line); padding: 9px 12px; border-radius: 10px; font: inherit; cursor: pointer; }
  .main-nav {
    position: absolute; left: 16px; right: 16px; top: 74px;
    display: none; flex-direction: column; align-items: stretch;
    padding: 18px; background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow);
  }
  .main-nav[data-open="true"] { display: flex; }
  
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col .section-header { text-align: center; align-items: center; margin-inline: auto; }
  .two-col .actions { justify-content: center; }
  
  .category-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { flex-direction: column; align-items: center; text-align: center; }
  .info-card { padding: 32px 20px; }
}

@media (max-width: 480px) {
  .benefit-grid, .category-list { grid-template-columns: 1fr; }
  .actions { flex-direction: column; width: 100%; }
  .button { width: 100%; }
  .map-container { height: 300px; }
}

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