:root {
  --navy: #002080;
  --blue: #305098;
  --blue-light: #5870A8;
  --blue-lighter: #7890B8;
  --tint: #F0F3FA;
  --white: #ffffff;
  --text: #2b3245;
  --text-muted: #5a6377;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 32, 128, 0.08);
  --shadow-hover: 0 16px 40px rgba(0, 32, 128, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.2;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

a {
  color: var(--blue);
}

.nowrap {
  white-space: nowrap;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.kicker-light {
  color: var(--blue-lighter);
}

.section {
  padding: 5.5rem 0;
}

.section-tint {
  background: var(--tint);
}

.section-intro {
  max-width: 640px;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 32, 128, 0.28);
}

.btn-primary:hover {
  background: var(--blue);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(0, 12, 60, 0.3);
}

.btn-white:hover {
  background: var(--tint);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  box-shadow: none;
}

.btn-nav {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  box-shadow: none;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 32, 128, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.header-logo img {
  height: 46px;
  width: auto;
}

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

.nav a:not(.btn) {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.nav a:not(.btn):hover {
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a9c 60%, var(--blue) 100%);
  color: var(--white);
  padding: 6.5rem 0 7rem;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.hero-shape-1 {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -120px;
}

.hero-shape-2 {
  width: 360px;
  height: 360px;
  bottom: -160px;
  right: 15%;
  background: rgba(88, 112, 168, 0.25);
}

.hero-inner {
  position: relative;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-logo {
  height: 92px;
  width: auto;
  margin: 0 auto 2.2rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin: 0 auto 2.4rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Quem somos */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 1.5rem;
}

.about-text p {
  margin-bottom: 1.1rem;
  color: var(--text-muted);
}

.about-text strong {
  color: var(--navy);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.stat-card {
  background: var(--tint);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stat-number {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Serviços */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-card h3 {
  margin: 1.1rem 0 0.6rem;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-featured {
  background: var(--navy);
}

.service-card-featured h3 {
  color: var(--white);
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.82);
}

.service-card-featured .service-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

/* Modais */
.modais {
  margin-top: 4rem;
}

.modais-title {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.modais-intro {
  color: var(--text-muted);
  margin-bottom: 1.6rem;
}

.modais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.1rem;
  text-align: center;
  box-shadow: var(--shadow);
  color: var(--blue);
}

.modal-card svg {
  margin: 0 auto 0.7rem;
}

.modal-card strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.modal-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  display: block;
}

.modais-banner {
  margin-top: 1.6rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  padding: 1.3rem 1.7rem;
  font-size: 0.95rem;
}

.modais-banner strong {
  color: var(--blue-lighter);
}

/* Cobertura */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 1.5rem;
}

.coverage-card {
  background: var(--tint);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
}

.coverage-head {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: var(--blue);
  margin-bottom: 1.2rem;
}

.coverage-head svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.coverage-head span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.city-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.city-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.city-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
}

.coverage-note {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.coverage-card-dark {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  grid-column: span 2;
}

.coverage-card-dark .coverage-head {
  color: var(--white);
}

.coverage-card-dark h3 {
  color: var(--white);
}

.coverage-card-dark .coverage-head span {
  color: var(--blue-lighter);
}

.coverage-card-dark p {
  font-size: 0.93rem;
  margin-bottom: 1rem;
}

/* Clientes */
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.client-badge {
  background: var(--white);
  border: 1px solid rgba(0, 32, 128, 0.1);
  border-radius: 999px;
  padding: 0.95rem 2rem;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  box-shadow: var(--shadow);
}

/* CTA */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a9c 70%, var(--blue) 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 5.5rem 0;
  overflow: hidden;
}

.cta-shape {
  width: 460px;
  height: 460px;
  top: -200px;
  right: -140px;
}

.cta-inner {
  position: relative;
  max-width: 760px;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band > .container > p:not(.kicker) {
  max-width: 560px;
  margin-bottom: 2rem;
}

.cta-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin: 2.2rem 0 2.4rem;
}

.cta-contact {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
  text-decoration: none;
}

.cta-contact svg {
  flex-shrink: 0;
  color: var(--blue-lighter);
}

.cta-contact strong {
  display: block;
  font-size: 1rem;
}

.cta-contact span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Rodapé */
.footer {
  background: #001560;
  color: rgba(255, 255, 255, 0.78);
  padding: 3.8rem 0 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr;
  gap: 2.2rem;
  padding-bottom: 2.6rem;
}

.footer-brand img {
  height: 54px;
  width: auto;
  margin-bottom: 0.9rem;
}

.footer-brand p {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
}

.footer-col p {
  margin-bottom: 0.55rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-col .btn {
  margin-top: 0.5rem;
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.4rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Animações de entrada */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsivo */
@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

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

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

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

  .coverage-card-dark {
    grid-column: 1 / -1;
  }

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

@media (max-width: 680px) {
  .section {
    padding: 4rem 0;
  }

  .nav {
    position: fixed;
    inset: 63px 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.6rem 4%;
    box-shadow: 0 18px 30px rgba(0, 32, 128, 0.12);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }

  .nav.open {
    transform: translateY(0);
  }

  .nav a:not(.btn) {
    padding: 0.85rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 32, 128, 0.07);
  }

  .nav .btn-nav {
    margin: 0.9rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 4.5rem 0 5rem;
  }

  .hero-logo {
    height: 72px;
  }

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

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

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .cta-contacts {
    flex-direction: column;
    gap: 1.2rem;
  }
}
