:root {
  --navy: #003671;
  --blue: #0097D9;
  --lime: #65B32E;
  --ice: #EFF8FE;
  --ink: #003671;
  --muted: #5E6B73;
  --line: #D7E3EC;
  --max: 1160px;
  --gutter: clamp(16px, 4vw, 24px);
  --shadow: 0 12px 40px rgba(0, 54, 113, .08);
  --header: 72px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html, body { margin: 0; padding: 0; max-width: 100%; overflow-x: clip; }
body {
  font-family: Prompt, "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  min-height: 100dvh;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}
body.menu-open, body.search-open { overflow: hidden; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg, video { max-width: 100%; height: auto; }
button, a, input, select, textarea { touch-action: manipulation; }
.wrap { width: min(var(--max), calc(100% - 2 * var(--gutter))); margin-inline: auto; }
.skip {
  position: absolute; left: -999px; top: 8px; background: #fff; padding: 8px 12px; z-index: 100;
}
.skip:focus { left: 12px; }

.site-top {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 1px 0 var(--line);
  padding-top: var(--safe-t);
}
.site-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  min-height: 64px;
}
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); min-width: 0; }
.site-logo img { display: block; border-radius: 12px; width: 48px; height: 48px; flex-shrink: 0; }
.site-logo strong { display: block; font-size: 1.35rem; letter-spacing: .08em; line-height: 1; }
.site-logo small { display: block; color: var(--blue); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.site-top-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.linha-verde {
  color: var(--lime) !important; font-weight: 700; font-size: .86rem;
  letter-spacing: .03em; text-transform: uppercase; text-decoration: none !important; text-align: right; line-height: 1.25;
}
.linha-verde span { display: block; font-size: .68rem; letter-spacing: .12em; opacity: .9; }
.btn-balcao {
  background: var(--navy); color: #fff !important; text-decoration: none !important;
  padding: 11px 22px; border-radius: 999px; font-weight: 600; font-size: .9rem; border: 0; cursor: pointer;
  transition: transform .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-balcao:hover { background: #00285a; transform: translateY(-1px); text-decoration: none; }
.icon-btn {
  width: 44px; height: 44px; border: 0; background: transparent; color: var(--navy);
  border-radius: 50%; cursor: pointer; display: grid; place-items: center; flex-shrink: 0;
}
.icon-btn:hover { background: var(--ice); }
.burger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; padding: 0; }
.burger span { display: block; width: 18px; height: 2px; background: var(--navy); border-radius: 1px; transition: transform .2s ease, opacity .2s ease; }
body.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 54, 113, .46);
  z-index: 45;
  backdrop-filter: blur(2px);
}
.nav-overlay.open { display: block; }

.site-nav { border-top: 1px solid #f0f4f7; }
.site-nav-row { display: flex; gap: 8px 26px; align-items: center; padding: 8px 0 10px; }
.site-nav a { color: var(--navy); font-weight: 600; font-size: .94rem; text-decoration: none; padding: 8px 0; }
.site-nav a:hover, .site-nav a.is-on { color: var(--blue); }
.nav-staff { margin-left: auto; color: var(--muted) !important; font-weight: 500 !important; font-size: .84rem !important; }
.nav-mobile-extra { display: none; }
.drop { position: relative; }
.drop-box {
  display: none; position: absolute; top: 100%; left: 0; min-width: 230px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 8px; box-shadow: var(--shadow); z-index: 30;
}
.drop-box a { display: block; padding: 9px 12px; border-radius: 8px; font-size: .88rem; font-weight: 500; }
.drop-box a:hover { background: var(--ice); }
.drop:hover .drop-box, .drop:focus-within .drop-box { display: block; }

.search-layer {
  display: none; position: fixed; inset: 0; background: rgba(0,54,113,.45);
  z-index: 55; place-items: start center;
  padding: calc(24px + var(--safe-t)) var(--gutter) 0;
  backdrop-filter: blur(3px);
}
.search-layer.open { display: grid; }
.search-box {
  width: min(640px, 100%); background: #fff; border-radius: 16px; padding: 16px;
  display: flex; gap: 8px; align-items: center; box-shadow: var(--shadow); flex-wrap: wrap;
}
.search-box input {
  flex: 1 1 180px; min-width: 0; border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 16px; font: inherit; font-size: 16px;
}

.hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; min-height: 460px; }
.slides { position: relative; z-index: 2; }
.slide { display: none; padding: 68px 0 120px; }
.slide.is-active { display: block; animation: fade .5s ease; }
@keyframes fade { from { opacity: .35; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.hero-kicker { color: var(--lime); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .74rem; margin: 0 0 12px; }
.hero h1 { font-size: clamp(1.7rem, 4.4vw, 3rem); line-height: 1.12; margin: 0 0 14px; font-weight: 700; max-width: 16ch; }
.hero p { color: #cfe8f8; font-size: 1.06rem; max-width: 34rem; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn-lime, .btn-ghost-w, .btn-navy {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 999px; font-weight: 600; text-decoration: none !important;
  transition: transform .15s ease, background .15s ease;
  min-height: 44px;
}
.btn-lime { background: var(--lime); color: #fff !important; }
.btn-lime:hover { background: #549626; transform: translateY(-1px); }
.btn-ghost-w { border: 1.5px solid rgba(255,255,255,.45); color: #fff !important; }
.btn-navy { background: var(--navy); color: #fff !important; }
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; height: 92px; pointer-events: none; }
.hero-deco { position: absolute; right: 5%; top: 16%; width: min(380px, 38vw); z-index: 1; pointer-events: none; }
.slide-nav {
  position: absolute; left: 0; right: 0; bottom: 108px; z-index: 3;
  display: flex; justify-content: center; gap: 8px;
}
.slide-nav button {
  width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.35); cursor: pointer;
  min-width: 10px;
}
.slide-nav button.on { background: var(--lime); width: 22px; border-radius: 8px; }

.shortcuts { margin-top: -42px; position: relative; z-index: 4; padding-bottom: 10px; }
.short-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.short {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px 14px 14px;
  text-decoration: none; color: var(--navy); box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 8px; min-height: 118px;
  transition: transform .15s ease, border-color .15s ease;
}
.short:hover { transform: translateY(-3px); border-color: var(--blue); text-decoration: none; }
.short i {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: var(--ice); color: var(--blue); font-style: normal; font-weight: 700;
}
.short strong { font-size: .88rem; line-height: 1.3; }

.section { padding: 64px 0; }
.section h2 { font-size: clamp(1.35rem, 3vw, 1.75rem); margin: 0 0 6px; }
.section .lead { color: var(--muted); margin: 0 0 28px; }
.sec-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.sec-head h2, .sec-head .lead { margin: 0; }
.news-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px; }
.news-card {
  display: flex; flex-direction: column; color: inherit; text-decoration: none;
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff;
  min-height: 100%;
}
.news-card:hover { border-color: var(--blue); text-decoration: none; box-shadow: var(--shadow); }
.news-card .thumb {
  height: 120px; background:
    linear-gradient(135deg, #003671 0%, #0097D9 55%, #65B32E 110%);
}
.news-card.alt .thumb { background: linear-gradient(135deg, #0097D9, #003671); height: 72px; }
.news-card .pad { padding: 18px 20px 20px; flex: 1; }
.news-card time { color: var(--blue); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.news-card h3 { margin: 8px 0 0; font-size: 1.08rem; line-height: 1.35; }
.news-card p { color: var(--muted); font-size: .9rem; margin: 10px 0 0; }

.band { background: linear-gradient(180deg, #EFF8FE 0%, #fff 100%); }
.cta-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.cta-split h2 { font-size: clamp(1.5rem, 3.2vw, 2.05rem); line-height: 1.15; }
.pills { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0 18px; }
.pill { background: #fff; border: 1px solid #d7e6ef; border-radius: 999px; padding: 6px 12px; font-size: .8rem; color: var(--navy); font-weight: 600; }
.phone {
  width: min(280px, 100%); margin: 0 auto; background: #0b2744; border-radius: 28px; padding: 12px;
  box-shadow: 0 24px 50px rgba(0,54,113,.28);
}
.phone-in { background: #fff; border-radius: 20px; overflow: hidden; min-height: 340px; }
.phone-bar { height: 28px; background: var(--navy); color: #fff; font-size: .68rem; display: flex; align-items: center; justify-content: center; letter-spacing: .08em; }
.phone-in .row { padding: 12px 14px; border-bottom: 1px solid #eef3f7; font-size: .82rem; display: flex; justify-content: space-between; gap: 10px; }
.phone-in .row b { color: var(--navy); }

.tarifa-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tarifa {
  border: 1px solid var(--line); border-radius: 16px; padding: 24px; background: #fff;
  position: relative; overflow: hidden;
}
.tarifa::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--blue); }
.tarifa:nth-child(2)::before { background: var(--navy); }
.tarifa:nth-child(3)::before { background: var(--lime); }
.tarifa span { color: var(--blue); font-weight: 700; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.tarifa strong { display: block; font-size: 1.85rem; margin: 10px 0 4px; letter-spacing: -.02em; }
.tarifa em { font-style: normal; color: var(--muted); font-size: .86rem; }

.zones { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.zone {
  border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; background: #fff;
}
.zone strong { display: block; }
.zone span { color: var(--lime); font-size: .78rem; font-weight: 700; }
.zone.warn span { color: #c45c12; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.contact-box { background: var(--navy); color: #fff; border-radius: 16px; padding: 22px 24px; min-height: 140px; }
.contact-box.lime { background: var(--lime); }
.contact-box.blue { background: var(--blue); }
.contact-box h3 { margin: 0 0 8px; font-size: 1rem; }
.contact-box p, .contact-box a { color: #fff; margin: 0; font-size: 1.15rem; font-weight: 600; word-break: break-word; }
.contact-box small { opacity: .88; display: block; margin-top: 6px; font-size: .8rem; font-weight: 400; }

.page-head {
  background: var(--navy); color: #fff; padding: 52px 0 44px; position: relative; overflow: hidden;
}
.page-head::after {
  content: ""; position: absolute; right: -40px; bottom: -40px; width: 220px; height: 220px;
  border: 18px solid rgba(0,151,217,.25); border-radius: 50%;
}
.page-head h1 { margin: 0; font-size: clamp(1.45rem, 3vw, 2.2rem); position: relative; }
.page-head p { color: #cfe8f8; margin: 8px 0 0; position: relative; max-width: 40rem; }
.prose { max-width: 760px; color: #334; }
.prose h2 { color: var(--navy); margin-top: 1.6em; }
.steps { counter-reset: s; display: grid; gap: 12px; padding: 0; }
.steps li { list-style: none; background: var(--ice); border-radius: 12px; padding: 14px 16px 14px 56px; position: relative; }
.steps li::before {
  counter-increment: s; content: counter(s); position: absolute; left: 14px; top: 12px;
  width: 28px; height: 28px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

.site-foot { background: #fff; border-top: 1px solid var(--line); padding-bottom: var(--safe-b); }
.foot-grid { display: grid; grid-template-columns: 1.3fr .9fr .9fr 1fr; gap: 28px; padding: 40px 0 32px; color: var(--muted); font-size: .9rem; }
.foot-grid h5 { margin: 0 0 10px; color: var(--navy); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; }
.foot-brand { margin-bottom: 10px; }
.foot-bar { background: var(--navy); color: #9db8d0; font-size: .8rem; padding: 13px 0 calc(13px + var(--safe-b)); }
.foot-bar .wrap { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.tagline { color: var(--lime); font-weight: 600; }

.float-leak {
  position: fixed;
  right: calc(18px + env(safe-area-inset-right, 0px));
  bottom: calc(18px + var(--safe-b));
  z-index: 30;
  background: var(--lime); color: #fff !important; text-decoration: none !important;
  padding: 12px 16px; border-radius: 999px; font-weight: 700; font-size: .82rem;
  box-shadow: 0 10px 24px rgba(101,179,46,.4);
}
.float-leak:hover { background: #549626; }

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

@media (max-width: 1100px) {
  .short-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid, .cta-split, .tarifa-row, .contact-grid, .zones { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-deco { opacity: .35; width: min(280px, 32vw); }
}

@media (max-width: 1080px) {
  .burger { display: flex; }
  .linha-verde { display: none; }
  .nav-overlay.open { display: block; }
  .site-nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 92vw);
    max-width: 100%;
    background: #fff;
    z-index: 50;
    border-top: 0;
    transform: translateX(110%);
    transition: transform .28s cubic-bezier(.2, .8, .2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: calc(18px + var(--safe-t)) 8px calc(28px + var(--safe-b));
    box-shadow: -16px 0 48px rgba(0, 54, 113, .18);
  }
  .site-nav.open { transform: none; }
  .site-nav .wrap { width: 100%; max-width: none; }
  .site-nav-row {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 16px;
    gap: 0;
  }
  .site-nav a {
    padding: 12px 8px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .drop-box {
    position: static;
    display: block;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 12px;
    min-width: 0;
  }
  .drop-box a { font-weight: 500; color: var(--muted); padding: 10px 8px; }
  .nav-staff { margin-left: 0; }
  .nav-mobile-extra {
    display: block;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
  .nav-mobile-extra a { color: var(--lime) !important; }
}

@media (min-width: 1081px) {
  .site-nav { transform: none !important; }
}

@media (max-width: 720px) {
  .short-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid, .cta-split, .tarifa-row, .contact-grid, .foot-grid, .zones { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero h1 { max-width: none; }
  .hero p { font-size: 1rem; }
  .slide { padding: 40px 0 96px; }
  .hero-wave { height: 64px; }
  .hero-deco { display: none; }
  .slide-nav { bottom: 76px; }
  .shortcuts { margin-top: -28px; }
  .short { min-height: 104px; }
  .section { padding: 40px 0; }
  .cta-split { gap: 28px; }
  .page-head { padding: 36px 0 32px; }
  .site-logo img { width: 40px; height: 40px; }
  .site-logo strong { font-size: 1.15rem; }
  .btn-balcao { padding: 10px 14px; font-size: .82rem; }
  .float-leak { font-size: .75rem; padding: 11px 14px; }
}

@media (max-width: 480px) {
  .site-logo small { display: none; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas a { width: 100%; }
  .search-box .btn-balcao { width: 100%; }
  .contact-box { min-height: 0; }
  .tarifa { padding: 18px; }
  .phone { width: min(260px, 100%); }
}

@media (max-width: 360px) {
  .short-grid { grid-template-columns: 1fr; }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: 0; }
  .slide { padding: 28px 0 80px; }
  .slide-nav { bottom: 64px; }
  .hero-wave { height: 48px; }
  .shortcuts { margin-top: -20px; }
}
