
      :root {
        --azul-escuro: #062a4e;
        --azul-profundo: #041b33;
        --azul-logo: #009fe3;
        --azul-claro: #e8f6fc;
        --dourado-logo: #e7b900;
        --dourado-escuro: #c99d00;
        --branco: #ffffff;
        --cinza-texto: #5f6b7a;
        --cinza-fundo: #f5f8fb;
        --cinza-borda: rgba(6, 42, 78, 0.1);
        --sombra-card: 0 18px 45px rgba(6, 42, 78, 0.08);
        --sombra-hover: 0 28px 70px rgba(6, 42, 78, 0.16);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Inter", sans-serif;
        color: var(--cinza-texto);
        background: var(--branco);
        overflow-x: hidden;
      }

      a {
        text-decoration: none;
      }

      ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
      }

      img {
        max-width: 100%;
      }

      section {
        position: relative;
      }

      .section-padding {
        padding: 110px 0;
      }

      .section-title {
        max-width: 720px;
        margin: 0 auto 60px;
        text-align: center;
      }

      .section-subtitle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--azul-logo);
        background: rgba(0, 159, 227, 0.1);
        padding: 8px 16px;
        border-radius: 999px;
        font-weight: 700;
        font-size: 14px;
        margin-bottom: 18px;
      }

      .section-title h2 {
        color: var(--azul-escuro);
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 18px;
      }

      .section-title p {
        color: var(--cinza-texto);
        font-size: 17px;
        line-height: 1.7;
      }

      .main-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 15px 28px;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--azul-logo), #0077b6);
        color: var(--branco);
        font-weight: 700;
        border: none;
        transition: all 0.3s ease;
        box-shadow: 0 14px 35px rgba(0, 159, 227, 0.28);
        cursor: pointer;
      }

      .main-btn:hover {
        transform: translateY(-3px);
        background: linear-gradient(135deg, var(--dourado-logo), var(--dourado-escuro));
        color: var(--azul-profundo);
        box-shadow: 0 18px 42px rgba(231, 185, 0, 0.34);
      }

      .outline-btn {
        background: transparent;
        border: 2px solid var(--dourado-logo);
        color: var(--dourado-logo);
        box-shadow: none;
      }

      .outline-btn:hover {
        background: var(--dourado-logo);
        color: var(--azul-profundo);
      }

      /* Preloader */
      .preloader {
        position: fixed;
        inset: 0;
        background: var(--azul-profundo);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.4s ease, visibility 0.4s ease;
      }

      .preloader.hide {
        opacity: 0;
        visibility: hidden;
      }

      .loader {
        width: 56px;
        height: 56px;
        border: 5px solid rgba(255, 255, 255, 0.2);
        border-top-color: var(--dourado-logo);
        border-radius: 50%;
        animation: spin 0.9s linear infinite;
      }

      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }

      /* Header */
      .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        transition: all 0.3s ease;
      }

      .navbar-area {
        padding: 18px 0;
        transition: all 0.3s ease;
      }

      .header.sticky .navbar-area {
        background: rgba(4, 27, 51, 0.92);
        backdrop-filter: blur(14px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
        padding: 10px 0;
      }

      .navbar-brand {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-left: -68px;
      }

.brand-logo {
  width: 280px;
  height: 110px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

      .brand-text {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
      }

      .brand-text strong {
        color: var(--branco);
        font-size: 20px;
        font-weight: 800;
      }

      .brand-text span {
        color: rgba(255, 255, 255, 0.75);
        font-size: 12px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
      }

      .navbar-nav {
        gap: 6px;
      }

      .navbar-nav .nav-link {
        color: rgba(255, 255, 255, 0.86);
        font-weight: 600;
        padding: 10px 14px !important;
        border-radius: 999px;
        transition: all 0.3s ease;
      }

      .navbar-nav .nav-link:hover,
      .navbar-nav .nav-link.active {
        color: var(--azul-profundo);
        background: var(--dourado-logo);
      }

      .navbar-toggler {
        border: none;
        box-shadow: none !important;
      }

      .navbar-toggler span {
        display: block;
        width: 28px;
        height: 3px;
        background: var(--branco);
        margin: 5px 0;
        border-radius: 10px;
      }

      /* Hero */
      .hero-section {
        min-height: 100vh;
        padding: 160px 0 90px;
        background:
          radial-gradient(circle at 85% 15%, rgba(0, 159, 227, 0.35), transparent 32%),
          radial-gradient(circle at 10% 90%, rgba(231, 185, 0, 0.25), transparent 32%),
          linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-escuro) 55%, #073a68 100%);
        overflow: hidden;
      }

      .hero-section::before {
        content: "";
        position: absolute;
        width: 780px;
        height: 780px;
        right: -260px;
        top: -240px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.04);
      }

      .hero-section::after {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        left: -180px;
        bottom: -210px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.035);
      }

      .hero-content {
        position: relative;
        z-index: 2;
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.1);
        color: var(--dourado-logo);
        border: 1px solid rgba(231, 185, 0, 0.32);
        padding: 9px 17px;
        border-radius: 999px;
        font-weight: 700;
        margin-bottom: 22px;
        backdrop-filter: blur(8px);
      }

      .hero-content h1 {
        color: var(--branco);
        font-size: clamp(2.4rem, 5.5vw, 5rem);
        font-weight: 800;
        line-height: 1.05;
        margin-bottom: 24px;
        letter-spacing: -1.5px;
      }

      .hero-content p {
        color: rgba(255, 255, 255, 0.82);
        font-size: 18px;
        line-height: 1.8;
        max-width: 620px;
        margin-bottom: 34px;
      }

      .hero-actions {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
      }

      .hero-card {
        position: relative;
        z-index: 2;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(18px);
        border-radius: 32px;
        padding: 34px;
        box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
      }

      .hero-card-inner {
        background: var(--branco);
        border-radius: 26px;
        padding: 30px;
      }

      .hero-card h3 {
        color: var(--azul-escuro);
        font-weight: 800;
        margin-bottom: 12px;
      }

      .hero-card p {
        color: var(--cinza-texto);
        line-height: 1.7;
        margin-bottom: 22px;
      }

      .protocol-box {
        background: var(--cinza-fundo);
        border-radius: 20px;
        padding: 18px;
        margin-bottom: 18px;
        border: 1px solid var(--cinza-borda);
      }

      .protocol-box label {
        color: var(--azul-escuro);
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 8px;
      }

      .protocol-box input {
        width: 100%;
        border: none;
        outline: none;
        background: var(--branco);
        border-radius: 999px;
        padding: 14px 18px;
        color: var(--azul-escuro);
        font-weight: 600;
      }

      .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        margin-top: 22px;
      }

      .stat-item {
        background: rgba(6, 42, 78, 0.06);
        border-radius: 18px;
        padding: 16px 10px;
        text-align: center;
      }

      .stat-item strong {
        display: block;
        color: var(--azul-escuro);
        font-size: 22px;
        font-weight: 800;
      }

      .stat-item span {
        font-size: 12px;
        color: var(--cinza-texto);
      }

      /* Serviços */
      .services-section {
        background: var(--cinza-fundo);
      }

      .service-card {
        height: 100%;
        background: var(--branco);
        border-radius: 26px;
        padding: 34px 28px;
        border: 1px solid var(--cinza-borda);
        box-shadow: var(--sombra-card);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 159, 227, 0.08), rgba(231, 185, 0, 0.08));
        opacity: 0;
        transition: all 0.3s ease;
      }

      .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--sombra-hover);
      }

      .service-card:hover::before {
        opacity: 1;
      }

      .service-icon {
        position: relative;
        z-index: 2;
        width: 68px;
        height: 68px;
        border-radius: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--azul-logo), var(--azul-escuro));
        color: var(--branco);
        font-size: 32px;
        margin-bottom: 24px;
        box-shadow: 0 14px 30px rgba(0, 159, 227, 0.24);
      }

      .service-card h3,
      .service-card p,
      .service-card a {
        position: relative;
        z-index: 2;
      }

      .service-card h3 {
        color: var(--azul-escuro);
        font-weight: 800;
        font-size: 22px;
        margin-bottom: 14px;
      }

      .service-card p {
        line-height: 1.75;
        margin-bottom: 18px;
      }

      .service-link {
        color: var(--azul-logo);
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }

      .service-link:hover {
        color: var(--dourado-escuro);
      }

      /* Institucional */
      .about-section {
        background: var(--branco);
      }

      .about-image-card {
        background: linear-gradient(135deg, var(--azul-escuro), var(--azul-profundo));
        border-radius: 34px;
        padding: 32px;
        min-height: 470px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 30px 80px rgba(4, 27, 51, 0.24);
      }

      .about-image-card::before {
        content: "";
        position: absolute;
        width: 360px;
        height: 360px;
        right: -130px;
        top: -130px;
        border-radius: 50%;
        background: rgba(0, 159, 227, 0.28);
      }

      .about-image-card::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        left: -100px;
        bottom: -120px;
        border-radius: 50%;
        background: rgba(231, 185, 0, 0.22);
      }

      .about-emblem {
        position: relative;
        z-index: 2;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 28px;
        padding: 30px;
        backdrop-filter: blur(12px);
      }

      .about-emblem h3 {
        color: var(--branco);
        font-weight: 800;
        font-size: 30px;
        margin-bottom: 16px;
      }

      .about-emblem p {
        color: rgba(255, 255, 255, 0.78);
        line-height: 1.8;
      }

      .check-list {
        display: grid;
        gap: 16px;
        margin-top: 28px;
      }

      .check-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        color: var(--azul-escuro);
        font-weight: 700;
      }

      .check-list i {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: rgba(0, 159, 227, 0.12);
        color: var(--azul-logo);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 1px;
      }

      .about-content h2 {
        color: var(--azul-escuro);
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 22px;
      }

      .about-content p {
        font-size: 17px;
        line-height: 1.8;
      }

      /* Atendimento */
      .attendance-section {
        background: linear-gradient(180deg, var(--cinza-fundo), var(--branco));
      }

      .step-card {
        background: var(--branco);
        border-radius: 26px;
        padding: 30px;
        border: 1px solid var(--cinza-borda);
        box-shadow: var(--sombra-card);
        height: 100%;
        transition: all 0.3s ease;
      }

      .step-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--sombra-hover);
      }

      .step-number {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--dourado-logo);
        color: var(--azul-profundo);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        margin-bottom: 20px;
      }

      .step-card h3 {
        color: var(--azul-escuro);
        font-weight: 800;
        font-size: 21px;
        margin-bottom: 12px;
      }

      .step-card p {
        line-height: 1.75;
      }

      /* FAQ */
      .faq-section {
        background: var(--cinza-fundo);
      }

      .faq-wrapper {
        max-width: 900px;
        margin: 0 auto;
      }

      .faq-item {
        background: var(--branco);
        border-radius: 22px;
        margin-bottom: 16px;
        border: 1px solid var(--cinza-borda);
        box-shadow: 0 12px 35px rgba(6, 42, 78, 0.07);
        overflow: hidden;
      }

      .faq-question {
        width: 100%;
        border: none;
        background: transparent;
        padding: 24px 28px;
        color: var(--azul-escuro);
        font-weight: 800;
        font-size: 17px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        text-align: left;
        cursor: pointer;
      }

      .faq-question i {
        color: var(--azul-logo);
        transition: transform 0.3s ease;
      }

      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
      }

      .faq-answer p {
        padding: 0 28px 24px;
        line-height: 1.8;
        margin-bottom: 0;
      }

      .faq-item.active .faq-answer {
        max-height: 240px;
      }

      .faq-item.active .faq-question i {
        transform: rotate(180deg);
      }

      /* Contato */
      .contact-section {
        background: var(--branco);
      }

      .contact-box {
        background:
          radial-gradient(circle at 90% 20%, rgba(0, 159, 227, 0.22), transparent 32%),
          linear-gradient(135deg, var(--azul-escuro), var(--azul-profundo));
        border-radius: 34px;
        padding: 55px;
        overflow: hidden;
        box-shadow: 0 32px 90px rgba(4, 27, 51, 0.26);
      }

      .contact-box h2 {
        color: var(--branco);
        font-weight: 800;
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 18px;
      }

      .contact-box p {
        color: rgba(255, 255, 255, 0.78);
        line-height: 1.8;
        margin-bottom: 0;
      }

      .contact-info {
        display: grid;
        gap: 16px;
      }

      .contact-info-item {
        display: flex;
        align-items: center;
        gap: 14px;
        color: var(--branco);
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 18px;
        padding: 17px 18px;
      }

      .contact-info-item i {
        color: var(--dourado-logo);
        font-size: 24px;
      }

      .contact-info-item span {
        color: rgba(255, 255, 255, 0.82);
        font-size: 14px;
      }

      .contact-info-item strong {
        display: block;
        font-size: 15px;
      }

      /* Footer */
      .footer {
        background: var(--azul-profundo);
        padding: 70px 0 30px;
      }

      .footer h3 {
        color: var(--dourado-logo);
        font-weight: 800;
        font-size: 18px;
        margin-bottom: 22px;
      }

      .footer p,
      .footer a,
      .footer li {
        color: rgba(255, 255, 255, 0.72);
      }

      .footer a:hover {
        color: var(--dourado-logo);
      }

      .footer-links li {
        margin-bottom: 12px;
      }

      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 45px;
        padding-top: 24px;
        text-align: center;
        color: rgba(255, 255, 255, 0.58);
      }

      /* Scroll top */
      .scroll-top {
        position: fixed;
        right: 22px;
        bottom: 22px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--dourado-logo);
        color: var(--azul-profundo);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 14px 30px rgba(231, 185, 0, 0.32);
      }

      .scroll-top.show {
        opacity: 1;
        visibility: visible;
      }

      .scroll-top:hover {
        background: var(--azul-logo);
        color: var(--branco);
        transform: translateY(-4px);
      }

      /* Animações */
      .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: all 0.7s ease;
      }

      .reveal.active {
        opacity: 1;
        transform: translateY(0);
      }

      /* Responsivo */
      @media (max-width: 991px) {
        .navbar-collapse {
          background: rgba(4, 27, 51, 0.98);
          border-radius: 22px;
          padding: 18px;
          margin-top: 16px;
        }

        .hero-section {
          padding-top: 140px;
        }

        .hero-card {
          margin-top: 48px;
        }

        .contact-box {
          padding: 38px 28px;
        }
      }

      @media (max-width: 575px) {
        .brand-text strong {
          font-size: 16px;
        }

        .brand-logo {
          width: 210px;
          height: 85px;
        }

        .section-padding {
          padding: 78px 0;
        }

        .hero-actions {
          align-items: stretch;
        }

        .hero-actions .main-btn {
          width: 100%;
        }

        .hero-card {
          padding: 18px;
        }

        .hero-card-inner {
          padding: 22px;
        }

        .hero-stats {
          grid-template-columns: 1fr;
        }

        .contact-box {
          border-radius: 26px;
        }
      }
