:root {
  --text: #0b1220;
  --muted: #5c6b82;
  --muted-hero: #d7e5ff;
  --bg: #ffffff;
  --border: #e6eaf2;
  --brand: #1bff52;
  --brand-2: #1bff52;
  --danger: #ef4444;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Base */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: var(--bg);
}

.privacy-page {
  background: #f8f9fc;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: relative;
  z-index: 2;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  color: #fff;
  margin-bottom: clamp(34px, 6vw, 88px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  display: block;
  height: 75px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(5, 25, 119, 0.28));
}

.privacy-hero {
  padding-bottom: 40px;
}

.privacy-hero-copy {
  max-width: 720px;
  color: #fff;
  padding-bottom: 48px;
}

.privacy-hero-copy h1 {
  margin: 18px 0 12px;
  font-size: clamp(38px, 6vw, 58px);
}

.privacy-hero-copy p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.main-nav a {
  opacity: 0.95;
  font-weight: 700;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-toggle {
  display: flex;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid #cfd7e6;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn.big {
  padding: 1.1rem 1.4rem;
  font-size: 1rem;
}

.btn-outline {
  border-color: rgba(27, 255, 82, 0.6);
  color: var(--brand);
  background: rgba(27, 255, 82, 0.08);
}

.btn-outline:hover {
  background: rgba(27, 255, 82, 0.18);
}

.site-header .btn-outline {
  border-color: transparent;
  color: #042712;
  background: var(--brand);
  box-shadow: 0 10px 24px rgba(27, 255, 82, 0.26);
}

.site-header .btn-outline:hover {
  background: var(--brand);
  border-color: transparent;
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: #042712;
  border-color: transparent;
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fafbff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.burger span {
  width: 18px;
  height: 2px;
  background: #667289;
  position: relative;
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #667289;
}

.burger span::before {
  top: -6px;
}

.burger span::after {
  bottom: -6px;
}

.site-header .burger {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.site-header .burger span,
.site-header .burger span::before,
.site-header .burger span::after {
  background: #fff;
}

.mobile {
  display: none;
  background: linear-gradient(180deg, rgba(6, 41, 185, 0.98) 0%, rgba(13, 88, 255, 0.92) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.mobile.open {
  display: block;
}

.mobile a {
  display: block;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* HERO (Azul com rede) */
.hero {
  position: relative;
  color: #fff;
  padding: clamp(32px, 6vw, 60px) 0 clamp(60px, 8vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 12% 12%, rgba(90, 150, 255, 0.35), transparent 62%),
    radial-gradient(760px 480px at 88% 18%, rgba(38, 120, 255, 0.32), transparent 60%),
    linear-gradient(180deg, #0535c6 0%, #0531b5 40%, #041f78 100%);
}

.bg-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-canvas canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}

.hero-form-wrapper {
  width: 100%;
}

.hero h1 {
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.06;
  margin: 10px 0 12px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.hero-sub {
  font-size: clamp(16px, 1.7vw, 20px);
  color: var(--muted-hero);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.grad {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.tag-hero {
  background: rgba(0, 0, 0, 0.25);
  color: #cfe5ff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.kpis-hero .kpi {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  color: #eef6ff;
}

.hero-card {
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  min-height: 520px;
}

.glass {
  background: rgba(6, 20, 60, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.hero-form {
  display: grid;
  gap: 0.8rem;
}

.hero-form .row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

@media (max-width: 768px) {
  .hero-card {
    min-height: 560px;
  }
}

.field label {
  font-size: 0.86rem;
  color: #e6f0ff;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.input,
select,
textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  color: #fff;
  padding: 0.9rem 1rem;
  outline: none;
}

.input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 4px rgba(27, 255, 82, 0.22);
}

.disclaimer {
  font-size: 0.8rem;
  color: #e6f0ff;
  opacity: 0.85;
}

/* Garantia */
.garantia {
  background: #f4f6ff;
  color: var(--text);
  padding: 80px 0;
}

.garantia-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.garantia-wrap h2 {
  text-align: center;
  font-size: clamp(24px, 3.6vw, 38px);
  margin: 0 auto;
  max-width: 780px;
  color: #0b1220;
}

.garantia-features {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.garantia-item {
  flex: 1 1 240px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 320px;
  margin: 0 auto;
}

.garantia-icon {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.garantia-icon svg {
  width: 64px;
  height: 64px;
}

.garantia-item h3 {
  margin: 4px 0 6px;
  font-size: 1.15rem;
  color: #0b1220;
}

.garantia-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

/* LIGHT SECTIONS (restante do site) */
.light {
  background: #fff;
  color: var(--text);
}

.how-section {
  padding: 110px 0 120px;
}

.timeline {
  margin-top: 48px;
  position: relative;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-behavior: smooth;
}

.timeline::-webkit-scrollbar {
  height: 8px;
}

.timeline::-webkit-scrollbar-thumb {
  background: rgba(116, 139, 196, 0.4);
  border-radius: 999px;
}

.timeline-track {
  --progress: 0;
  display: flex;
  gap: 28px;
  position: relative;
  padding-top: 30px;
  min-width: 720px;
}

.timeline-track::before,
.timeline-track::after {
  content: "";
  position: absolute;
  left: calc(32px + 42px);
  right: calc(32px + 42px);
  top: 66px;
  height: 4px;
  border-radius: 999px;
}

.timeline-track::before {
  background: linear-gradient(90deg, rgba(172, 193, 239, 0.3), rgba(172, 193, 239, 0.45));
}

.timeline-track::after {
  background: linear-gradient(90deg, #61a6ff, #2dd4bf);
  width: 100%;
  transform: scaleX(var(--progress));
  transform-origin: left;
  transition: transform 0.35s ease;
}

.timeline-item {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 74px 28px 30px;
  box-shadow: 0 24px 38px rgba(13, 23, 65, 0.12);
  border: 1px solid rgba(146, 174, 233, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  outline: none;
  cursor: pointer;
  flex: 1 1 0;
  min-width: 220px;
  scroll-snap-align: start;
}

.timeline-item:hover,
.timeline-item:focus-visible {
  transform: translateY(-10px);
  box-shadow: 0 30px 52px rgba(13, 23, 65, 0.16);
  border-color: rgba(79, 134, 255, 0.4);
}

.timeline-item.is-active {
  border-color: rgba(79, 134, 255, 0.55);
}

.timeline-item.is-current {
  transform: translateY(-12px);
  box-shadow: 0 36px 60px rgba(13, 23, 65, 0.18);
}

.timeline-icon {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5d8cff, #43d5c7);
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 26px;
  position: absolute;
  top: -16px;
  left: 32px;
  box-shadow: 0 18px 36px rgba(39, 93, 198, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline-item:nth-child(2) .timeline-icon {
  background: linear-gradient(135deg, #ff8a5c, #ff5687);
}

.timeline-item:nth-child(3) .timeline-icon {
  background: linear-gradient(135deg, #745cff, #a25cff);
}

.timeline-item:nth-child(4) .timeline-icon {
  background: linear-gradient(135deg, #2dd4bf, #60a5fa);
}

.timeline-item:is(:hover, :focus-visible) .timeline-icon,
.timeline-item.is-current .timeline-icon {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(39, 93, 198, 0.35);
}

.timeline-icon svg {
  width: 34px;
  height: 34px;
}

.timeline-copy h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: #0b1220;
}

.timeline-copy p {
  margin: 0;
  font-size: 0.98rem;
  color: #5c6b82;
  line-height: 1.55;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(22px, 3vw, 34px);
  margin: 0;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f4f7ff;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.muted {
  color: var(--muted);
}

.cta {
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.cta-light {
  background: #f6f9ff;
  border: 1px solid var(--border);
}

.footer-hero {
  margin-top: 0;
  background:
    radial-gradient(900px 600px at 80% -10%, rgba(115, 160, 255, 0.32), transparent 60%),
    radial-gradient(720px 520px at 10% 30%, rgba(65, 230, 192, 0.28), transparent 62%),
    linear-gradient(180deg, #042d8f 0%, #06319a 50%, #001f63 100%);
  color: #f7fbff;
  padding: 90px 0 70px;
  position: relative;
  clip-path: ellipse(102% 100% at 50% 100%);
}

.footer-top {
  margin-bottom: 48px;
}

.footer-cta {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  color: #f7fbff;
  box-shadow: 0 26px 60px rgba(6, 26, 72, 0.35);
}

.footer-cta h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.footer-cta p {
  margin: 0;
  color: rgba(230, 240, 255, 0.9);
}

.footer-contact {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-contact-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-contact-head h2 {
  margin: 0;
  font-size: clamp(24px, 3.4vw, 36px);
}

.footer-contact-head p {
  margin: 0;
  color: rgba(230, 240, 255, 0.8);
}

.footer-branches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.footer-branch {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 22px 48px rgba(2, 17, 64, 0.32);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-branch h3 {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
}

.footer-branch p {
  margin: 0;
  color: rgba(229, 236, 255, 0.88);
  line-height: 1.5;
}

.footer-branch span {
  font-size: 0.92rem;
  color: rgba(194, 209, 255, 0.85);
}

.footer-branch .btn {
  align-self: flex-start;
  margin-top: 6px;
}

.footer-hero .btn.btn-primary {
  background: linear-gradient(135deg, #1bff52, #14d948);
  color: #003a17;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 36px rgba(19, 170, 72, 0.45);
}

.footer-hero .btn.btn-primary:hover {
  filter: brightness(1.05);
}

.footer-hero .btn.btn-outline {
  border-color: rgba(27, 255, 82, 0.7);
  color: #0d2a18;
  background: rgba(27, 255, 82, 0.2);
}

.footer-hero .btn.btn-outline:hover {
  background: rgba(27, 255, 82, 0.3);
}

.footgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  color: rgba(232, 240, 255, 0.92);
}

.footer-bottom {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom img {
  width: min(220px, 60vw);
  height: auto;
  opacity: 0.92;
}

.icon-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.icon-whatsapp img {
  width: 100%;
  height: 100%;
}

.icon-whatsapp svg {
  width: 100%;
  height: 100%;
}

.wpp .icon-whatsapp {
  width: 22px;
  height: 22px;
  margin: 0;
}

.footgrid .foot h4 {
  margin: 0 0 10px;
  color: #ffffff;
}

.footgrid .foot p {
  margin: 0;
  color: rgba(232, 240, 255, 0.85);
  line-height: 1.5;
}

.footer-hero .muted {
  color: rgba(232, 240, 255, 0.72);
}

/* Depoimentos */
.reviews {
  background: #f2f4f9;
  padding: 90px 0;
}

.reviews-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
}

.reviews-slider {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
}

.reviews-window {
  overflow: hidden;
  flex: 1;
}

.reviews-track {
  --cards-per-view: 3;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--cards-per-view) - 1) * 24px) / var(--cards-per-view));
  column-gap: 24px;
  transition: transform 0.45s ease;
}

.review-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 24px 45px rgba(22, 33, 74, 0.12);
  border: 1px solid rgba(112, 135, 201, 0.12);
  min-height: 260px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  background: linear-gradient(135deg, #5b7bff, #7b5bff);
  text-transform: uppercase;
}

.reviews-track .review-card:nth-child(2n) .review-avatar {
  background: linear-gradient(135deg, #ff6b6b, #ff8f6b);
}

.reviews-track .review-card:nth-child(3n) .review-avatar {
  background: linear-gradient(135deg, #2dd4bf, #60a5fa);
}

.reviews-track .review-card:nth-child(4n) .review-avatar {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.review-author h3 {
  margin: 0;
  font-size: 1.05rem;
}

.review-meta {
  display: block;
  font-size: 0.88rem;
  color: #283857;
  font-weight: 600;
}

.review-rating span {
  font-size: 1.1rem;
  letter-spacing: 4px;
  color: #f5c518;
}

.review-card p {
  margin: 0;
  color: #0f1d3b;
  font-size: 0.98rem;
  line-height: 1.55;
}

.reviews-nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(32, 45, 86, 0.18);
  color: #0f1d3b;
  font-size: 28px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.reviews-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(32, 45, 86, 0.22);
}

.reviews-nav:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .reviews-track {
    --cards-per-view: 2;
  }

  .timeline {
    scroll-snap-type: x mandatory;
  }

  .timeline-item {
    min-width: 240px;
  }

  .footer-branches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}


@media (max-width: 680px) {
  .reviews-slider {
    padding: 0 12px;
    gap: 12px;
  }

  .reviews-track {
    --cards-per-view: 1;
  }

  .reviews-nav {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .timeline-track::before,
  .timeline-track::after {
    display: none;
  }

  .timeline-item {
    padding-top: 86px;
  }

  .timeline-icon {
    left: 22px;
  }

  .footer-branches {
    grid-template-columns: minmax(0, 1fr);
  }
}


@media (max-width: 560px) {
  .how-section {
    padding: 70px 0 80px;
  }

  .footer-hero {
    padding: 70px 0 60px;
    clip-path: ellipse(120% 110% at 50% 100%);
  }

  .footer-contact-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footgrid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* Especialidades */
.especialidades {
  background: #f2f4fb;
  color: #0b1220;
  padding: 90px 0 80px;
}

.especialidades-wrap {
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.especialidades-wrap h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(26px, 3.6vw, 40px);
}

.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.especialidade-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  background: #111;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 40px rgba(15, 25, 56, 0.18);
}

.especialidade-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.85));
}

.especialidade-content {
  position: relative;
  padding: 50px 36px 32px;
  text-align: center;
  color: #f7fafc;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.especialidade-content h3 {
  font-size: clamp(20px, 2.6vw, 26px);
  margin: 0;
  font-weight: 700;
}

.especialidade-content p {
  margin: 0;
  font-size: 1rem;
  color: rgba(247, 250, 252, 0.86);
}

@media (max-width: 960px) {
  .especialidades-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .especialidades-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Mapa */
.mapa {
  background: #ffffff;
  padding: 0;
  color: #0b1220;
}

.mapa-wrap {
  padding: 64px 0 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.mapa-wrap h2 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 38px);
}

.mapa-wrap p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.6;
}

.mapa-frame {
  width: 100%;
}

.mapa-frame iframe {
  width: 100%;
  height: 720px;
  border: 0;
  filter: grayscale(10%) saturate(110%);
}

.privacy-content {
  padding: 70px 0 110px;
}

.policy-section + .policy-section {
  margin-top: 32px;
}

.policy-section {
  background: #fff;
  border-radius: 18px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 16px 40px rgba(6, 41, 185, 0.06);
  border: 1px solid rgba(11, 18, 32, 0.06);
}

.policy-section h2 {
  margin: 0 0 12px;
  font-size: clamp(20px, 3vw, 26px);
}

.policy-section p,
.policy-section ul {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.policy-section ul {
  padding-left: 1.3rem;
}

.policy-section li {
  margin-bottom: 6px;
}

.policy-section a {
  color: #0a6bff;
  text-decoration: underline;
}

@media (max-width: 560px) {
  .mapa-wrap {
    padding: 48px 0 28px;
  }

  .mapa-frame iframe {
    height: 520px;
  }
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 60px;
  background: #fff;
}

.footgrid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
}

.foot h4 {
  margin: 0 0 8px;
  color: #0b1220;
}

/* WhatsApp FAB */
.wpp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #003913;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: 0;
  z-index: 3;
}

.wpp:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 22, 54, 0.96);
  color: #fff;
  padding: 18px 0;
  z-index: 4;
  box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.35s ease;
  pointer-events: none;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-inner {
  width: min(1120px, 94%);
  margin: 0 auto;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-copy {
  flex: 1 1 320px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.cookie-copy a {
  color: var(--brand);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  min-width: 160px;
  text-align: center;
  font-size: 0.95rem;
  padding: 0.85rem 1.1rem;
}

@media (max-width: 640px) {
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
    min-width: 0;
  }
}

/* Responsivo */
@media (max-width: 960px) {
  .hero-wrap {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footgrid {
    grid-template-columns: 1fr 1fr;
  }

  .site-header .nav {
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
  }

  .site-header .nav .brand {
    flex: 1;
    order: 0;
  }

  .brand-logo {
    height: 58px;
  }

  nav ul {
    display: none;
  }

  .site-header .nav-toggle {
    order: 1;
    margin-left: auto;
  }

  .burger {
    display: flex;
  }

  .site-header .nav-cta {
    order: 2;
    flex-basis: 100%;
    justify-content: center;
    margin-top: 4px;
  }

  .site-header .nav-cta .btn {
    width: min(360px, 100%);
    text-align: center;
  }

  .mobile {
    padding: 0 4%;
  }

  .garantia-features {
    justify-content: center;
  }

  .garantia-item {
    max-width: 360px;
  }
}

@media (max-width: 560px) {
  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-form .row.two {
    grid-template-columns: 1fr;
  }

  .garantia-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: none;
  }

  .garantia-item h3 {
    margin-top: 12px;
  }

  .garantia-item p {
    font-size: 1rem;
  }
}
/* Serviços */
.servicos {
  background: #050505;
  color: #f5f5f5;
  padding: 90px 0;
}

.servicos-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.servicos-wrap h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  margin: 0;
  text-align: center;
}

.servicos-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.servico-card {
  background: linear-gradient(180deg, #181818 0%, #0c0c0c 100%);
  border-radius: 24px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  gap: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.servico-card img {
  width: 100%;
  max-width: 190px;
  height: 140px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}

.servico-card h3 {
  margin: 0;
  color: #f1f5f9;
  font-size: 1.18rem;
  font-weight: 700;
}

.servico-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #24d94f 0%, #1aaf3c 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 14px 28px rgba(19, 162, 54, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  margin: auto auto 0;
}

.servico-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 34px rgba(19, 162, 54, 0.4);
}

@media (max-width: 960px) {
  .servicos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .servicos-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .servico-card img {
    max-width: 180px;
    height: 130px;
  }
}
