@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/manrope-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/manrope-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/inter-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/inter-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}

:root {
  --amarelo: #f2b705;
  --amarelo-escuro: #c99304;
  --grafite: #1d232a;
  --azul-tecnico: #0f2740;
  --cinza-claro: #f4f6f7;
  --branco: #ffffff;
  --cinza-metal: #5b6672;
  --linha: #dce1e4;
  --whatsapp: #25d366;
  --whatsapp-escuro: #1ea952;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 10px 28px rgba(15, 39, 64, 0.08);
  --shadow-soft-hover: 0 14px 34px rgba(15, 39, 64, 0.12);
  --font-manrope: "Manrope", sans-serif;
  --font-inter: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-inter);
  color: var(--grafite);
  background: var(--branco);
  line-height: 1.5;
  font-size: 17px;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 78px;
}

h1, h2, h3 {
  font-family: var(--font-manrope);
  line-height: 1.15;
  color: var(--grafite);
}

a { color: inherit; }
img { max-width: 100%; display: block; }
figure { margin: 0; }
svg { display: block; }

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

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

.skip-link:focus {
  position: fixed;
  left: 10px;
  top: 10px;
  width: auto;
  height: auto;
  clip: auto;
  background: var(--amarelo);
  color: var(--grafite);
  padding: 12px 16px;
  z-index: 999;
  font-weight: 700;
  border-radius: var(--radius);
}

/* Topbar */
.topbar {
  background: var(--azul-tecnico);
  padding: 14px 0;
}

.topbar .wordmark {
  font-family: var(--font-manrope);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--branco);
  letter-spacing: -0.01em;
  display: block;
  text-align: center;
}

.topbar .wordmark span { color: var(--amarelo); }

/* Botões */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 22px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.08rem;
  font-family: var(--font-manrope);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: normal;
  width: 100%;
  text-align: center;
  min-height: 60px;
  text-decoration: none;
}

.btn:active { transform: scale(0.97); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--branco);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.32);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-escuro);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.4);
}

.btn-icon { flex: none; width: 24px; height: 24px; }

.btn-small {
  min-height: 52px;
  font-size: 0.98rem;
  padding: 14px 18px;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--azul-tecnico) 0%, #0b1e33 100%);
  color: var(--branco);
  padding: 36px 0 40px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 183, 5, 0.14);
  border: 1px solid rgba(242, 183, 5, 0.4);
  color: var(--amarelo);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--branco);
}

.hero .lead {
  margin-top: 14px;
  font-size: 1.08rem;
  color: #cfd9e1;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn { margin-top: 26px; }

/* Sections */
section { padding: 60px 0; }

.bg-amarelo { background: var(--amarelo); color: var(--grafite); }
.bg-light { background: var(--cinza-claro); }
.bg-dark { background: var(--azul-tecnico); color: var(--branco); }

.bg-dark h2, .bg-dark h3 { color: var(--branco); }
.bg-dark p { color: #c7d2dc; }

.section-head { margin-bottom: 32px; text-align: center; }

.section-head h2 {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.section-head p { margin-top: 12px; color: var(--cinza-metal); font-size: 1rem; }

.bg-dark .section-head p, .bg-amarelo .section-head p { color: inherit; opacity: 0.85; }

/* Painel de serviços */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-chip {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 24px 14px;
  text-align: center;
  font-weight: 700;
  font-family: var(--font-manrope);
  font-size: 1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.service-chip:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft-hover);
}

.icon-svg {
  width: 30px;
  height: 30px;
  color: var(--amarelo-escuro);
  display: block;
  margin: 0 auto 12px;
}

.icon-svg-lg { width: 36px; height: 36px; margin: 0 0 4px; }

/* Por que chamar / motivos */
.reasons-list { display: grid; gap: 16px; margin-bottom: 28px; }

.reason-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--branco);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.reason-item .check-icon {
  flex: none;
  width: 26px;
  height: 26px;
  color: var(--amarelo-escuro);
  margin-top: 2px;
}

.reason-item p { font-size: 1rem; font-weight: 600; }

/* Blocos de serviço detalhado */
.service-block {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 16px;
  transition: box-shadow 0.15s ease;
}

.service-block:hover { box-shadow: var(--shadow-soft-hover); }

.service-block h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 10px 0 8px;
}

.service-block p { color: var(--cinza-metal); font-size: 0.98rem; margin-bottom: 16px; }

/* Como funciona */
.steps-list { display: grid; gap: 18px; }

.step-item { display: flex; gap: 16px; align-items: flex-start; }

.step-num {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amarelo);
  color: var(--grafite);
  font-family: var(--font-manrope);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-item h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 4px; }
.step-item p { color: #c7d2dc; font-size: 0.95rem; }

/* Depoimentos */
.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--branco);
  border-radius: 100px;
  padding: 9px 18px;
  margin: 0 auto 26px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-soft);
}

.star-icon { width: 16px; height: 16px; color: var(--amarelo-escuro); flex: none; }

.testimonials-grid { display: grid; gap: 16px; margin-bottom: 30px; }

.testimonial-card {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 26px 22px 22px;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--amarelo);
}

.quote-icon {
  width: 30px;
  height: 30px;
  color: var(--amarelo);
  margin-bottom: 10px;
}

.testimonial-card p { color: var(--cinza-metal); font-size: 0.98rem; font-style: italic; }

.testimonial-card cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-weight: 700;
  font-family: var(--font-manrope);
  font-size: 0.92rem;
  color: var(--grafite);
}

/* Galeria */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--grafite);
  box-shadow: var(--shadow-soft);
}

.gallery-item img { width: 100%; height: 140px; object-fit: cover; transition: transform 0.25s ease; }

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.8), rgba(0,0,0,0.15) 70%, transparent);
  color: var(--branco);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 28px 12px 10px;
}

/* Confiar / selos */
.badges-grid { display: grid; gap: 12px; }

.badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cinza-claro);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-weight: 700;
  font-size: 0.98rem;
}

.badge-item .icon-svg { width: 26px; height: 26px; margin: 0; flex: none; color: var(--azul-tecnico); }

/* Região */
.region-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 24px; }

.region-item {
  background: var(--branco);
  padding: 16px;
  border-radius: var(--radius);
  font-size: 0.98rem;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

/* FAQ */
.faq-list { display: grid; gap: 10px; }

.faq-item {
  background: var(--branco);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  padding: 20px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.chevron-icon {
  width: 20px;
  height: 20px;
  color: var(--amarelo-escuro);
  flex: none;
  transition: transform 0.2s ease;
}

.faq-item[open] .chevron-icon { transform: rotate(180deg); }

.faq-item .faq-answer {
  padding: 0 20px 18px;
  color: var(--cinza-metal);
  font-size: 0.96rem;
}

/* CTA final */
.cta-final { background: var(--grafite); color: var(--branco); text-align: center; }
.cta-final h2 { color: var(--branco); font-size: 1.6rem; }
.cta-final p { color: #b9c1c8; margin-top: 12px; margin-bottom: 26px; }

/* Botão flutuante */
.whatsapp-float {
  display: flex;
  align-items: center;
  gap: 8px;
  position: fixed;
  right: 16px;
  bottom: 16px;
  height: 60px;
  padding: 0 18px 0 0;
  border-radius: 100px;
  background: var(--whatsapp);
  color: var(--branco);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  z-index: 500;
  transition: transform 0.15s ease;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-manrope);
  font-size: 0.9rem;
}

.whatsapp-float:hover { transform: scale(1.05); }

.whatsapp-float .icon-circle {
  flex: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -1px;
}

.whatsapp-float .label { white-space: nowrap; }

/* Modal exit-intent */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 20, 28, 0.72);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 900;
  padding: 0;
}

.exit-overlay[hidden] { display: none; }

.exit-modal {
  background: var(--branco);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 32px 24px 30px;
  width: 100%;
  max-width: 480px;
  text-align: center;
  position: relative;
  animation: slideUp 0.25s ease;
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.exit-modal .close-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cinza-claro);
  border: none;
  cursor: pointer;
  color: var(--grafite);
  display: flex;
  align-items: center;
  justify-content: center;
}

.exit-modal .close-x svg { width: 18px; height: 18px; }

.exit-modal .exit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--branco);
  margin: 0 auto 16px;
}

.exit-modal .exit-icon svg { width: 32px; height: 32px; }

.exit-modal h2 { font-size: 1.35rem; font-weight: 800; margin-bottom: 10px; }

.exit-modal p { color: var(--cinza-metal); font-size: 0.98rem; margin-bottom: 20px; }

.exit-modal .btn-secondary {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--cinza-metal);
  font-family: var(--font-inter);
  font-weight: 600;
  margin-top: 12px;
  min-height: auto;
  padding: 10px;
  font-size: 0.9rem;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

/* Footer */
footer.site {
  background: #0c1620;
  color: #9facb6;
  padding: 32px 0;
  font-size: 0.85rem;
  text-align: center;
}

footer.site a { color: #cdd6dc; }
footer.site a:hover { color: var(--amarelo); }

.footer-bottom {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: #6b7885;
}

@media (min-width: 640px) {
  .container { max-width: 900px; }
  .hero h1 { font-size: 2.6rem; }
  .hero .lead { font-size: 1.15rem; }
  .hero .btn { width: auto; padding-left: 40px; padding-right: 40px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item img { height: 180px; }
  .region-grid { grid-template-columns: repeat(3, 1fr); }
  .badges-grid { grid-template-columns: repeat(3, 1fr); }
  section { padding: 96px 0; }
  .section-head h2 { font-size: 2.1rem; }
  .exit-overlay { align-items: center; }
  .exit-modal { border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
