/* ==========================================================================
   LUMEN Administração de Condomínios — Design System
   Organização: 1) Reset  2) Tokens  3) Base  4) Layout  5) Componentes
   6) Utilitários  7) Responsivo
   ========================================================================== */

/* 1) RESET ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
img, picture, svg { max-width: 100%; display: block; }
.icon-inline { width: 1em; height: 1em; flex-shrink: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
table { border-collapse: collapse; }

/* 2) TOKENS ---------------------------------------------------------------- */
:root {
  /* Marca */
  --c-red: #C02020;
  --c-red-dark: #961919;
  --c-red-light: #FDECEC;
  --c-navy: #14213D;
  --c-navy-soft: #1c2c50;
  --c-slate: #4A6075;
  --c-white: #FFFFFF;
  --c-bg-light: #F5F6F7;

  /* Texto */
  --c-text: #202631;
  --c-text-muted: #5b6472;
  --c-border: #e3e6ea;

  /* Tipografia */
  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --fs-h1: clamp(2.1rem, 1.6rem + 2.2vw, 3.4rem);
  --fs-h2: clamp(1.6rem, 1.35rem + 1.2vw, 2.3rem);
  --fs-h3: clamp(1.15rem, 1.05rem + 0.4vw, 1.4rem);
  --lh-tight: 1.15;
  --lh-base: 1.65;

  /* Espaçamento */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --container: 1180px;

  /* Efeitos */
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 3px rgba(20, 33, 61, 0.08);
  --shadow-md: 0 10px 30px rgba(20, 33, 61, 0.10);
  --transition: 0.2s ease;
  --header-h: 84px;
}

/* 3) BASE ------------------------------------------------------------------ */
body {
  font-family: var(--font-base);
  color: var(--c-text);
  background: var(--c-white);
  line-height: var(--lh-base);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-base);
  color: var(--c-navy);
  line-height: var(--lh-tight);
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { color: var(--c-text-muted); }
p + p { margin-top: 1em; }

main { display: block; }

a.link-inline {
  color: var(--c-red);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
a.link-inline:hover { border-color: currentColor; }

:focus-visible {
  outline: 3px solid var(--c-slate);
  outline-offset: 2px;
}

/* 4) LAYOUT ----------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-sm);
}

.section { padding-block: var(--space-xl); }
.section--sm { padding-block: var(--space-lg); }
.section--tight { padding-block: var(--space-md); }
.bg-light { background: var(--c-bg-light); }
.bg-navy { background: var(--c-navy); color: #cdd3dd; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--c-white); }

.grid { display: grid; gap: var(--space-md); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--c-red);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-red);
  display: inline-block;
}
.eyebrow.on-badge {
  background: var(--c-red-light);
  padding: 0.4em 0.9em;
  border-radius: 999px;
}
.eyebrow.on-badge::before { display: none; }

.section-head { max-width: 680px; margin-bottom: var(--space-lg); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.05rem; }

/* 5) COMPONENTES ------------------------------------------------------------ */

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--c-navy);
  color: var(--c-white);
  padding: 0.75em 1.25em;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--c-border);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: 100%;
}
.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand img { height: 58px; width: auto; }

.main-nav { display: flex; align-items: center; gap: var(--space-md); }
.main-nav > ul { display: flex; align-items: center; gap: 1.6rem; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a,
.main-nav > ul > li > button.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-navy);
  padding: 0.5rem 0;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > button.nav-toggle:hover,
.main-nav > ul > li.is-open > button.nav-toggle { color: var(--c-red); }
.nav-toggle svg { width: 14px; height: 14px; transition: transform var(--transition); }
li.is-open .nav-toggle svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 280px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
li.is-open .dropdown,
.main-nav > ul > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-text);
}
.dropdown a .icon-inline { width: 18px; height: 18px; color: var(--c-red); flex-shrink: 0; }
.dropdown a:hover { background: var(--c-bg-light); color: var(--c-red); }
.dropdown a.dropdown-all { color: var(--c-red); font-weight: 700; border-top: 1px solid var(--c-border); border-radius: 0; margin-top: 0.3rem; padding-top: 0.8rem; }
.dropdown a.dropdown-all .icon-inline { color: var(--c-red); }

.header-cta { display: flex; align-items: center; gap: 0.75rem; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--c-navy); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--c-red); color: var(--c-white); }
.btn-primary:hover { background: var(--c-red-dark); }
.btn-outline { background: transparent; color: var(--c-navy); border: 1.5px solid var(--c-border); }
.btn-outline:hover { border-color: var(--c-navy); }
.btn-outline-light { background: transparent; color: var(--c-white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-light:hover { border-color: var(--c-white); }
.btn-sm { padding: 0.6em 1.1em; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* Hero */
.hero { padding-block: clamp(2.5rem, 6vw, 5rem); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-xl); align-items: center; }
.hero h1 { margin-bottom: var(--space-sm); }
.hero .lead { font-size: 1.15rem; max-width: 46ch; margin-bottom: var(--space-md); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Breadcrumb / page intro (inner pages) */
.page-hero { background: var(--c-bg-light); padding-block: var(--space-lg); border-bottom: 1px solid var(--c-border); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.85rem; color: var(--c-text-muted); margin-bottom: var(--space-sm); }
.breadcrumb a { color: var(--c-slate); font-weight: 600; }
.breadcrumb a:hover { color: var(--c-red); }
.breadcrumb span[aria-hidden] { color: #b7bec7; }
.breadcrumb .current { color: var(--c-navy); font-weight: 700; }
.page-hero h1 { max-width: 40ch; }
.page-hero .lead { max-width: 60ch; font-size: 1.08rem; margin-top: var(--space-xs); }

.page-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.page-media img { width: 100%; height: 100%; object-fit: cover; }

/* Cards de serviço */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--space-md);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-red-light);
  color: var(--c-red);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.95rem; margin-bottom: var(--space-sm); }
.card .link-inline { font-size: 0.88rem; display: inline-flex; align-items: center; gap: 0.3em; }

.card--accent { background: var(--c-navy); border-color: var(--c-navy); }
.card--accent h3, .card--accent p { color: var(--c-white); }
.card--accent .card-icon { background: rgba(255,255,255,0.12); color: var(--c-white); }
.card--accent .link-inline { color: #ff8b8b; }

/* Lista de check */
.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.98rem;
  color: var(--c-text);
}
.check-list svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--c-red); margin-top: 0.15em; }

/* Sobre / imagem+texto */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.stat-badge {
  position: absolute; bottom: 1rem; right: 1rem;
  background: var(--c-red); color: var(--c-white);
  padding: 1rem 1.3rem; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  max-width: 200px;
}
.stat-badge strong { display: block; font-size: 1.5rem; font-weight: 800; }
.stat-badge span { font-size: 0.78rem; opacity: 0.9; }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 0;
  font-weight: 700;
  color: var(--c-navy);
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { flex-shrink: 0; width: 22px; height: 22px; color: var(--c-red); transition: transform var(--transition); }
.faq-item summary .icon svg { width: 100%; height: 100%; }
.faq-item[open] summary .icon { transform: rotate(45deg); }
.faq-item .faq-a { padding-bottom: 1.25rem; max-width: 70ch; }

/* Depoimentos */
.testimonial { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius); padding: var(--space-md); display: flex; flex-direction: column; }
.testimonial-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.8rem; }
.stars { display: flex; align-items: center; gap: 2px; color: var(--c-red); margin-bottom: 0; }
.stars .star-icon { width: 15px; height: 15px; }
.testimonial-google { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.8rem; color: var(--c-text-muted); text-decoration: none; }
.testimonial-google .icon-inline { width: 14px; height: 14px; }
.testimonial-google:hover { color: var(--c-navy); text-decoration: underline; }
.testimonial p { flex-grow: 1; }
.testimonial footer { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--c-border); }
.testimonial footer strong { display: block; color: var(--c-navy); }
.testimonial footer span { font-size: 0.85rem; color: var(--c-text-muted); }

/* CTA banda */
.cta-band { background: var(--c-navy); border-radius: var(--radius); padding: var(--space-lg); text-align: center; }
.cta-band h2 { color: var(--c-white); margin-bottom: 0.6rem; }
.cta-band p { color: #cdd3dd; max-width: 55ch; margin-inline: auto; margin-bottom: var(--space-md); }
.cta-band .hero-actions { justify-content: center; }

/* Blog cards */
.post-card {
  display: flex; flex-direction: column;
  background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius);
  overflow: hidden; height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card .post-media { aspect-ratio: 4/3; overflow: hidden; }
.post-card .post-media img { width: 100%; height: 100%; object-fit: cover; }
.post-card .post-body { padding: var(--space-sm) var(--space-md) var(--space-md); display: flex; flex-direction: column; flex: 1; }
.post-cat {
  display: inline-block; align-self: flex-start;
  background: var(--c-red-light); color: var(--c-red);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 0.3em 0.7em; border-radius: 999px; margin-bottom: 0.7rem;
}
.post-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.post-card p { font-size: 0.92rem; flex: 1; }
.post-meta { font-size: 0.8rem; color: var(--c-text-muted); margin-top: 0.8rem; }

.cat-filter { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: var(--space-lg); }
.cat-filter a {
  padding: 0.5em 1.1em; border-radius: 999px; border: 1.5px solid var(--c-border);
  font-size: 0.88rem; font-weight: 600; color: var(--c-navy);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.cat-filter a:hover, .cat-filter a.is-active { background: var(--c-navy); border-color: var(--c-navy); color: var(--c-white); }

/* Artigo (post) */
.article-body { max-width: 74ch; margin-inline: auto; }
.article-body h2 { margin-top: var(--space-lg); margin-bottom: 0.8rem; font-size: 1.5rem; }
.article-body h3 { margin-top: var(--space-md); margin-bottom: 0.6rem; }
.article-body p { margin-bottom: 1.1rem; font-size: 1.03rem; color: var(--c-text); }
.article-body ul, .article-body ol { margin: 0 0 1.1rem 1.3rem; color: var(--c-text); }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 0.4rem; }
.article-body strong { color: var(--c-navy); }
.article-meta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; color: var(--c-text-muted); font-size: 0.88rem; margin-bottom: var(--space-md); }
.article-meta .post-cat { margin: 0; }
.article-cover { border-radius: var(--radius); overflow: hidden; margin-bottom: var(--space-lg); box-shadow: var(--shadow-sm); }
.article-cover img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-cta {
  margin-top: var(--space-lg);
  background: var(--c-bg-light);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--space-md);
}
.article-cta h3 { margin-bottom: 0.4rem; }
.article-cta p { margin-bottom: var(--space-sm); font-size: 0.95rem; }
.related-links { margin-top: var(--space-sm); display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; }

/* Formulário de contato */
.form-field { margin-bottom: var(--space-sm); }
.form-field label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--c-navy); margin-bottom: 0.4rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 0.75em 0.9em;
  border: 1.5px solid var(--c-border); border-radius: var(--radius-sm);
  font-size: 0.96rem; background: var(--c-white);
  transition: border-color var(--transition);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--c-slate); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--c-text-muted); margin-top: var(--space-sm); }
.form-success { display: none; background: #e9f7ee; border: 1px solid #bfe6cd; color: #1c6b3a; padding: var(--space-sm); border-radius: var(--radius-sm); margin-top: var(--space-sm); }

.contact-info-list { display: grid; gap: var(--space-sm); }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-item .card-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-info-item h4 { margin-bottom: 0.2rem; }
.contact-info-item p { margin: 0; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-border); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* Footer */
.site-footer { background: var(--c-navy); color: #b9c1cf; padding-block: var(--space-xl) var(--space-md); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: var(--space-lg); margin-bottom: var(--space-lg); }
.footer-logo-box {
  display: inline-block;
  background: var(--c-white);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  margin-bottom: 0.9rem;
  line-height: 0;
}
.footer-brand img { height: 56px; width: auto; display: block; }
.footer-brand p { color: #9aa4b5; font-size: 0.9rem; max-width: 32ch; }
.footer-col h4 { color: var(--c-white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col a { font-size: 0.92rem; color: #b9c1cf; transition: color var(--transition); }
.footer-col a:hover { color: var(--c-white); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); border-radius: 50%;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--c-red); }
.footer-social svg { width: 17px; height: 17px; color: var(--c-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-md);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem;
  font-size: 0.82rem; color: #8b93a3;
}
.footer-bottom a { color: #8b93a3; }
.footer-bottom a:hover { color: var(--c-white); }

/* Página 404 */
.error-page { text-align: center; padding-block: clamp(3rem, 10vw, 7rem); }
.error-page .code { font-size: clamp(4rem, 12vw, 8rem); font-weight: 800; color: var(--c-red); line-height: 1; }

/* Cookie banner (LGPD) */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  background: var(--c-navy); color: #dfe3ea;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); flex-wrap: wrap; }
.cookie-banner p { color: #c4cad6; font-size: 0.88rem; margin: 0; max-width: 62ch; }
.cookie-banner .actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }

/* Botão flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 140;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float .icon-inline { width: 30px; height: 30px; color: var(--c-white); }
@media (max-width: 640px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 50px; height: 50px; }
  .whatsapp-float .icon-inline { width: 26px; height: 26px; }
}

/* 6) UTILITÁRIOS ------------------------------------------------------------ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.badge-list { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; margin-top: var(--space-sm); }
.badge-list li { font-size: 0.85rem; color: var(--c-text-muted); display: flex; align-items: center; gap: 0.4rem; }
.badge-list svg { width: 16px; height: 16px; color: var(--c-red); }

/* 7) RESPONSIVO -------------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { gap: var(--space-lg); }
}

@media (max-width: 860px) {
  /* top/height (não "inset") porque .site-header usa backdrop-filter, que cria um
     novo bloco de contenção para elementos fixed — "inset" ficaria relativo ao
     header (84px) em vez da viewport. calc(100vh - ...) não sofre esse problema. */
  .main-nav { position: fixed; top: var(--header-h); left: 0; right: 0; height: calc(100vh - var(--header-h)); background: var(--c-white); flex-direction: column; align-items: stretch; padding: var(--space-md); overflow-y: auto; transform: translateX(100%); transition: transform 0.25s ease; }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav > ul > li { border-bottom: 1px solid var(--c-border); }
  .main-nav > ul > li > a, .main-nav > ul > li > button.nav-toggle { width: 100%; justify-content: space-between; padding: 1rem 0.2rem; font-size: 1.02rem; }
  .dropdown { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; display: none; padding-left: 0.8rem; }
  li.is-open .dropdown { display: block; }
  .header-cta .btn span.btn-text-full { display: none; }
  .menu-toggle { display: flex; }
  .menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-active span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-media, .split-media { order: -1; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
}

@media (max-width: 620px) {
  :root { --space-xl: 3rem; --space-lg: 2rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-band { padding: var(--space-md); }
  .brand img { height: 46px; }
}

/* Print */
@media print {
  .site-header, .site-footer, .cookie-banner, .hero-actions, .menu-toggle { display: none; }
}
