/* Precatorial — site institucional (estático, autocontido) */
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&display=swap");

:root {
  --pc-navy: #00375e;
  --pc-navy-900: #002845;
  --pc-navy-100: #dbe7ef;
  --pc-navy-50: #eef4f8;
  --pc-blue: #289fd4;
  --pc-blue-100: #d9eef8;
  --pc-yellow: #fabd2c;
  --pc-yellow-600: #e0a416;
  --pc-gray-900: #1c2733;
  --pc-gray-700: #3d4a58;
  --pc-gray-500: #6b7885;
  --pc-gray-300: #c4ced6;
  --pc-gray-100: #eef1f4;
  --pc-gray-50: #f7f9fa;
  --pc-success: #1d8a4e;
  --shadow-card: 0 2px 8px rgba(0,55,94,.08), 0 8px 24px rgba(0,55,94,.08);
  --shadow-cta: 0 4px 14px rgba(250,189,44,.35);
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Archivo", Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.55;
  color: var(--pc-gray-700);
  background: #fff;
}
img { max-width: 100%; }
a { color: var(--pc-blue); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { color: var(--pc-navy); margin: 0; text-wrap: pretty; }
h1 { font-weight: 900; font-size: clamp(36px, 5vw, 56px); line-height: 1.08; letter-spacing: -0.01em; text-transform: uppercase; }
h2 { font-weight: 900; font-size: clamp(28px, 3.6vw, 40px); line-height: 1.15; text-transform: uppercase; }
h3 { font-weight: 800; font-size: 22px; }
.lead { font-size: 20px; }

/* Botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 800; font-size: 17px;
  letter-spacing: .04em; text-transform: uppercase; text-decoration: none;
  height: 56px; padding: 0 32px; border-radius: 999px; border: none; cursor: pointer;
  transition: background .15s var(--ease), transform .15s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--pc-yellow); color: var(--pc-navy); box-shadow: var(--shadow-cta); }
.btn-primary:hover { background: var(--pc-yellow-600); }
.btn-secondary { background: var(--pc-navy); color: #fff; }
.btn-secondary:hover { background: var(--pc-navy-900); }
.btn-outline { background: transparent; color: var(--pc-navy); border: 2px solid var(--pc-navy); }
.btn-outline:hover { background: var(--pc-navy-50); }
.btn-lg { height: 64px; font-size: 20px; padding: 0 44px; }

.badge {
  display: inline-flex; align-items: center;
  font-weight: 800; font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  background: var(--pc-yellow); color: var(--pc-navy);
}

/* Header */
.site-header {
  background: #fff; border-bottom: 1px solid var(--pc-gray-100);
  position: sticky; top: 0; z-index: 50;
}
.site-header .container {
  height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.site-header img { height: 40px; display: block; }
.site-header .btn { height: 44px; padding: 0 20px; font-size: 14px; }
.site-nav { display: flex; gap: 32px; }
.site-nav a { color: var(--pc-navy); text-decoration: none; font-weight: 700; font-size: 17px; }
.site-nav a:hover, .site-nav a.active { color: var(--pc-blue); }

/* Hamburguer (mobile/tablet) */
.nav-toggle {
  display: none; order: -1;
  width: 44px; height: 44px; padding: 0;
  background: none; border: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px; border-radius: 2px;
  background: var(--pc-navy); transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Hero */
.hero { background: var(--pc-navy); color: #fff; }
.hero .container { padding: 80px 24px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; margin: 20px 0 16px; }
.hero h1 .hl { color: var(--pc-yellow); }
.hero p { color: var(--pc-blue-100); max-width: 520px; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Cards e seções */
.section { padding: 88px 0; }
.section-soft { background: var(--pc-navy-50); }
.section-dark { background: var(--pc-navy); color: #fff; }
.section-dark h2 { color: #fff; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head p { color: var(--pc-gray-500); font-size: 19px; margin: 12px 0 0; }

.card {
  background: #fff; border: 1px solid var(--pc-gray-100);
  border-radius: 20px; padding: 28px; box-shadow: var(--shadow-card);
}
.card-soft { background: var(--pc-navy-50); border: 1px solid var(--pc-navy-100); box-shadow: none; }

.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--pc-yellow); color: var(--pc-navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 900; margin-bottom: 16px;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; align-items: center; }

.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list li::before {
  content: "✓"; flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--pc-yellow); color: var(--pc-navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px;
}

.photo-ph {
  background: var(--pc-navy-100); border: 2px dashed var(--pc-blue);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  color: var(--pc-navy); font-weight: 700; font-size: 16px; text-align: center; padding: 16px;
}

/* Formulário */
.field { display: block; margin-bottom: 16px; }
.field span { display: block; font-weight: 700; font-size: 16px; color: var(--pc-navy); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-weight: 600; font-size: 18px; color: var(--pc-gray-900);
  background: #fff; border: 1px solid var(--pc-gray-300); border-radius: 8px;
  height: 56px; padding: 0 16px; outline: none;
}
.field textarea { height: auto; min-height: 120px; padding: 14px 16px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--pc-blue); box-shadow: 0 0 0 3px var(--pc-blue-100);
}

/* CTA banner */
.cta-banner { background: var(--pc-navy); color: #fff; text-align: center; }
.cta-banner .container { padding: 88px 24px; }
.cta-banner h2 { color: #fff; max-width: 720px; margin: 20px auto 12px; }
.cta-banner p { color: var(--pc-blue-100); font-size: 20px; max-width: 560px; margin: 0 auto 32px; }

/* Footer */
.site-footer { background: var(--pc-navy-900); color: var(--pc-blue-100); font-size: 16px; }
.site-footer .container { padding: 56px 24px 40px; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; }
.site-footer img { height: 36px; margin-bottom: 16px; }
.site-footer h4 { color: #fff; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 14px; }
.site-footer a { color: var(--pc-blue-100); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom .container { display: block; padding: 20px 24px; text-align: center; font-size: 14px; }

/* Prints de depoimentos */
.prints-strip {
  display: flex; gap: 16px; overflow-x: auto;
  padding: 8px 4px 20px; margin-top: 40px;
  scroll-snap-type: x mandatory;
}
.prints-strip a {
  flex-shrink: 0; scroll-snap-align: start; display: block;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--pc-gray-100); box-shadow: var(--shadow-card);
  transition: transform .15s var(--ease);
}
.prints-strip a:hover { transform: translateY(-3px); }
.prints-strip img { height: 340px; width: auto; display: block; }
.prints-hint { text-align: center; font-size: 15px; color: var(--pc-gray-500); margin: 0; }

/* WhatsApp flutuante */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 100;
  width: 64px; height: 64px; border-radius: 50%;
  background: #25d366; box-shadow: 0 8px 24px rgba(0,0,0,.25);
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s var(--ease);
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 34px; height: 34px; fill: #fff; }

/* Responsivo */
@media (max-width: 1000px) {
  .grid-5 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero .container, .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: 1fr 1fr; }
  .site-footer .container { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }

  .site-header .container { height: 72px; gap: 12px; justify-content: flex-start; }
  .site-header .btn { margin-left: auto; }
  .site-header img { height: 32px; }
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--pc-gray-100);
    box-shadow: 0 12px 24px rgba(0,55,94,.12);
    flex-direction: column; gap: 0; padding: 8px 0;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 24px; font-size: 18px; }
  .site-nav a:hover, .site-nav a.active { background: var(--pc-navy-50); }
}
@media (max-width: 480px) {
  .site-header .btn { padding: 0 14px; }
}


/* ===== Correcoes mobile ===== */
@media (max-width: 700px){
  h1 { font-size: 30px !important; line-height: 1.15; letter-spacing: 0; }
  h2 { font-size: 25px; }
  .section { padding: 44px 0; }
  .container { padding: 0 18px; }
  .grid-5 { grid-template-columns: 1fr !important; }
  .btn-lg { height: 54px; font-size: 16px; padding: 0 20px; width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .site-header .btn { display: none; }
  .hero img { height: 240px !important; }
  .article > img { height: 200px !important; }
  .card { padding: 22px; }
}
@media (max-width: 400px){
  h1 { font-size: 26px !important; }
  .badge { font-size: 12px; letter-spacing: .05em; }
  .btn-lg { font-size: 15px; }
}
