    /*original*/
    :root {
      --bg: #f8fafc;
      --white: #ffffff;
      --text: #0f172a;
      --soft: #e2e8f0;
      --soft-2: #cbd5e1;
      --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
      --radius: 24px;
      --container: 1200px;
    }
   /* TEMA AZUL INSTITUCIONAL */
:root {
  --bg: #f4f8fc;
  --logo: #000000;
  --botao: #02293d;
  --white: #ffffff;
  --text: #ffffff;
  --muted: #ffffff;
  --preto: #000000;
  --azul: #020e3e;
   --soft: #dbe7f3;
  --soft-2: #bfd2e6;
  --primary: #1d4f91;
  --primary-dark: #153b6d;
  --primary-soft: #dce9f8;
  --accent: #3b82f6;
  --dark: #0f2138;
  --dark-2: #0b1728;
}

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.1;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
    }

    .section {
      padding: 80px 0;
    }

    .badge {
      display: inline-block;
      padding: 8px 14px;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--preto);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .title {
      font-size: 42px;
      line-height: 1.15;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-top: 18px;
       color: var(--preto);
    }
    .title2 {
      font-size: 42px;
      line-height: 1.15;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-top: 18px;
       color: var(--branco);
    }

    .title-white {
      color: var(--white);
    }

    .subtitle {
      font-size: 18px;
      color: var(--preto);
      margin-top: 18px;
      max-width: 800px;
    }

    .btn {
      display: inline-block;
      padding: 14px 24px;
      border-radius: 18px;
      font-weight: 700;
      transition: 0.25s ease;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--white);
      box-shadow: 0 12px 30px rgba(5, 150, 105, 0.18);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
    }

    .btn-secondary {
      background: var(--botao);
      border: 1px solid var(--soft-2);
      color: var(--text);
    }

    .btn-secondary:hover {
      border-color: var(--primary);
      color: var(--primary-dark);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: #FFFFFF;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--soft);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      min-height: 80px;
    }

    .logo-title {
      font-size: 22px;
      font-weight: 700;
       color: var(--logo);
    }

    .logo-subtitle {
      font-size: 14px;
      color: var(--logo);
    }

    .logo-brand {
      display: inline-flex;
      align-items: center;
      line-height: 0;
    }

    .logo-image {
      display: block;
      height: 80px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
    }

    .nav {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .nav a {
      font-size: 15px;
      color: var(--azul);
      font-weight: 600;
    }

    .nav a:hover {
      color: var(--primary-dark);
    }

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-image: url("fundo.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 4px 0 0px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    96deg,
    rgba(0, 19, 43, 0.95) 0%,
    rgba(9, 9, 9, 0.92) 35%,
    rgba(244, 247, 251, 0.86) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: 62px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 700px;
  margin-top: 18px;
}

.hero-content p {
  font-size: 19px;
  color: var(--muted);
  margin-top: 20px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-btn svg {
  flex-shrink: 0;
}

.hero-image-wrap {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: end;
  justify-content: flex-end;
}

.hero-photo-card {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 560px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.hero-photo {
  max-width: 100%;
  max-height: 780px;
  object-fit: contain;
  display: block;
  transform: scale(1.22);
  transform-origin: center bottom;
  filter: drop-shadow(0 18px 34px rgba(15, 23, 42, 0.22));
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.5;
}

.hero-shape-1 {
  width: 430px;
  height: 430px;
  background: rgba(29, 79, 145, 0.09);
  top: 36px;
  right: 16px;
}

.hero-shape-2 {
  display: none;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.mini-card {
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid #d5e0eb;
  border-radius: 20px;
  padding: 18px;
  font-size: 14px;
  color: var(--preto);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .hero-image-wrap {
    min-height: 560px;
    margin-top: 26px;
    justify-content: center;
  }

  .hero-photo-card {
    max-width: 520px;
  }

  .hero-photo {
    max-height: 670px;
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .hero {
   padding: 5px 0 0px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    min-height: 380px;
    margin-top: 8px;
    align-items: flex-start;
    justify-content: center;
  }

  .hero-photo-card {
    max-width: 390px;
    align-items: flex-start;
  }

  .hero-photo {
    max-height: 520px;
    transform: translateY(-24px);
  }

  .hero-shape-1 {
    width: 320px;
    height: 320px;
  }

  .hero-shape-2 {
    display: none;
  }
}

    .hero-panel {
      background: var(--white);
      border: 1px solid var(--soft);
      border-radius: 32px;
      padding: 36px;
      box-shadow: var(--shadow-lg);
    }

    .panel-label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #64748b;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .panel-list {
      display: grid;
      gap: 14px;
    }

    .panel-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      background: #f8fafc;
      border-radius: 18px;
      padding: 16px;
      color: var(--muted);
      font-size: 15px;
    }

    .panel-dot {
      color: var(--primary);
      font-size: 18px;
      line-height: 1;
      margin-top: 2px;
    }

    .highlight-box {
      background: var(--white);
      border: 1px solid var(--soft);
      border-radius: 32px;
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .highlight-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    .highlight-item {
      background: #f8fafc;
      border-radius: 20px;
      padding: 18px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
    }

    .areas-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 42px;
      color: var(--preto);
    }

    .card {
      background: var(--white);
      border: 1px solid var(--soft);
      border-radius: 32px;
      padding: 32px;
      box-shadow: var(--shadow);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .card h3 {
      font-size: 30px;
      margin-top: 18px;
      line-height: 1.15;
    }

    .card .lead {
      margin-top: 12px;
       color: var(--preto);
      font-size: 17px;
    }

    .problems-title {
      margin-top: 24px;
      font-size: 15px;
      font-weight: 700;
       color: var(--preto);
    }

    .problem-list {
      list-style: none;
      margin-top: 14px;
      display: grid;
      gap: 10px;
       color: var(--preto);
    }

    .problem-list li {
      display: flex;
      gap: 10px;
      color: var(--preto);
      font-size: 15px;
    }

    .promise-box {
      margin-top: 22px;
      background: #f8fafc;
      border-radius: 20px;
      padding: 18px;
      color: #334155;
      font-size: 15px;
    }

    .card .btn {
      margin-top: 22px;
      background: var(--dark);
      color: var(--white);
    }

    .card .btn:hover {
      background: var(--primary-dark);
    }

    .dark-section {
      background: var(--dark);
      color: var(--white);
    }

    .dark-section .subtitle,
    .dark-section p {
      color: #cbd5e1;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 42px;
    }

    .step-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 32px;
      padding: 30px;
    }

    .step-number {
      width: 52px;
      height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      background: var(--primary);
      color: var(--white);
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .step-card h3 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .step-card p {
      font-size: 15px;
      color: #cbd5e1;
    }

  .info-box {
    background: linear-gradient(135deg, #eaf2fb 0%, #ffffff 65%, #f4f8fc 100%);
    border: 1px solid #dbe7f3;
    border-radius: 32px;
    padding: 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    box-shadow: var(--shadow);
}

    .info-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .info-card {
      background: var(--white);
      border-radius: 20px;
      padding: 20px;
      box-shadow: var(--shadow);
    }

    .info-card h4 {
      font-size: 15px;
      margin-bottom: 8px;
      color: var(--azul);
    }

    .info-card p {
      font-size: 14px;
      color: var(--preto);
    }

    .faq-wrap {
      max-width: 980px;
      margin: 0 auto;
    }

    .faq-title {
      text-align: center;
      color: var(--preto);
    }

    .faq-list {
      display: grid;
      gap: 16px;
      margin-top: 42px;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid var(--soft);
      border-radius: 28px;
      padding: 26px;
      box-shadow: var(--shadow);
    }

    .faq-item h3 {
      font-size: 20px;
      margin-bottom: 10px;
      color: var(--preto);
    }

    .faq-item p {
      color: var(--muted);
      font-size: 16px;
      color: var(--preto);
    }

    .contact-box {
      background: var(--dark);
      color: var(--white);
      border-radius: 32px;
      padding: 48px;
      box-shadow: var(--shadow-lg);
    }

    .contact-center {
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
    }

    .contact-center p {
      color: #cbd5e1;
      margin-top: 18px;
      font-size: 18px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 36px;
    }

    .contact-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      padding: 22px;
      text-align: center;
    }

    .contact-card h4 {
      font-size: 16px;
      margin-bottom: 8px;
    }

    .contact-card p {
      color: #cbd5e1;
      font-size: 14px;
    }

    .legal-note {
      margin-top: 28px;
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 14px;
      color: #cbd5e1;
    }

    .site-footer {
      background: var(--white);
      border-top: 1px solid var(--soft);
      padding: 28px 0;
      color: var(--preto);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: flex-start;
      flex-wrap: wrap;
      
    }

    .footer-inner p,
    .footer-inner div {
      color: var(--preto);
      font-size: 14px;
    }

    .footer-brand {
      color: var(--text);
      font-weight: 700;
      margin-bottom: 4px;
    }

    @media (max-width: 1100px) {
      .hero-grid,
      .info-box,
      .areas-grid,
      .steps-grid,
      .contact-grid,
      .highlight-grid {
        grid-template-columns: 1fr;
      }

      .mini-grid,
      .info-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero h1 {
        font-size: 48px;
      }
    }

    @media (max-width: 820px) {
      .header-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0;
      }

      .logo-brand {
        align-self: center;
      }

      .header-inner > .whatsapp-btn {
        align-self: center;
      }

      .nav {
        gap: 14px;
      }

      .hero-grid {
        min-height: auto;
        padding: 15px 10px 0px;
      }

      .title {
        font-size: 34px;
        
      }

      .hero h1 {
        font-size: 38px;
      }

      .mini-grid,
      .info-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .card,
      .highlight-box,
      .contact-box,
      .hero-panel,
      .info-box,
      .faq-item,
      .step-card {
        padding: 24px;
      }
    }
    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .whatsapp-btn svg {
      flex-shrink: 0;
    }
  
