
    /* Reset e estilos gerais */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

        :root {
            --primary-blue: #34454D;
            --secondary-blue: #34454D;
            --dark-blue: #34454D;
            --secondary-yellow: #ffcc00;
            --light-gray: #f9f9f9;
            --medium-gray: #777;
            --dark-gray: #333;
            --white: #ffffff;
            --black: #000000;
            --text-white: #ffffff;
            --menu-hover: #e6f0ff;
        }
        
    body {
        color: var(--dark-gray);
        line-height: 1.6;
        background-color: var(--white);
        overflow-x: hidden;
        font-family: 'Poppins', sans-serif;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Source Serif Pro', serif;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #b7bfe2;
    }

    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .section-padding {
        padding: 80px 0;
    }

    /* Cabeçalho - NOVA NAVBAR */
    header {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
        padding: 0;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
        position: sticky;
        top: 0;
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
    }

    .logo {
        display: flex;
        align-items: center;

    }

    .logo img {
        height: 60px;
        margin-right: 10px;
    }

    .logo-text {
        font-size: 28px;
        font-weight: bold;
        font-family: 'Source Serif Pro', serif;
        color: var(--text-white);
        letter-spacing: 0.5px;
    }

    .logo-text span {
        color: var(--secondary-yellow);
    }



                /* Nova Seção: Missão, Visão e Valores - ATUALIZADA */
                .mission-vision-values {
                    background-color: var(--white);
                    padding: 80px 0;
                    border-bottom: 1px solid var(--border-color);
                }
        
                .mv-container {
                    max-width: 1200px;
                    margin: 0 auto;
                    padding: 0 20px;
                }
        
                .mv-header {
                    text-align: center;
                    margin-bottom: 50px;
                }
        
                .mv-header h2 {
                    font-family: 'Source Serif Pro', serif;
                    font-size: 2.2rem;
                    color: var(--primary-blue);
                    margin-bottom: 15px;
                    font-weight: 600;
                    letter-spacing: 0.5px;
                }
        
                .mv-header p {
                    font-size: 1.1rem;
                    color: var(--medium-gray);
                    max-width: 700px;
                    margin: 0 auto;
                    line-height: 1.6;
                }
        
                .mv-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                    gap: 30px;
                    margin-top: 40px;
                }
        
                .mv-card {
                    background: var(--white);
                    border-radius: 8px;
                    padding: 30px 25px;
                    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                    text-align: center;
                    height: 100%;
                    display: flex;
                    flex-direction: column;
                    border-top: 4px solid var(--primary-blue);
                    
                }
        
                .mv-card:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
                }
        
                .mv-icon {
                    font-size: 2.2rem;
                    color: var(--primary-blue);
                    margin-bottom: 15px;
                }
        
                .mv-card h3 {
                    font-family: 'Source Serif Pro', serif;
                    font-size: 1.5rem;
                    color: var(--primary-blue);
                    margin-bottom: 15px;
                    font-weight: 600;
                }
        
                .mv-card p {
                    color: var(--primary-blue);
                    line-height: 1.6;
                    flex-grow: 1;
                }
        
                .values-list {
                    text-align: left;
                    margin-top: 20px;
                    color: var(--primary-blue);
                }
        
                .values-list ul {
                    list-style-type: none;
                    padding: 0;
                }
        
                .values-list li {
                    margin-bottom: 12px;
                    padding-left: 25px;
                    position: relative;
                    color: var(--primary-blue);                }
        
                .values-list li:before {
                    content: "•";
                    color: var(--primary-blue);
                    font-weight: bold;
                    position: absolute;
                    left: 0;
                    font-size: 1.2rem;
                }
/* ===== CORREÇÃO DOS BOTÕES REVISA E CERTIFICADOS ===== */
/* Estilos para os botões de Revisa e Certificados */
.nav-button {
    margin-left: 15px;
    display: flex;
    align-items: center;
}

.btn-nav {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    background: var(--secondary-blue);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-blue);
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    white-space: nowrap;
}

.btn-nav-primary {
    background: var(--secondary-yellow);
    color: var(--dark-gray);
    border-color: var(--secondary-yellow);
}

                        /* Botão Revisa - VERDE */
                        .btn-nav-green {
                            background: #28a745;
                            border-color: #28a745;
                        }
/* CORREÇÃO: Efeito hover para o botão Revisa (azul) */
.btn-nav:hover {
    background: var(--white);
        color: var(--dark-gray);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);}

/* CORREÇÃO: Efeito hover para o botão Certificados (amarelo) */
.btn-nav-primary:hover {
    background: var(--white);
    color: var(--dark-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-nav i {
    margin-right: 8px;
    font-size: 0.95rem;
}

/* Remover o sublinhado e efeito de borda inferior dos botões */
.nav-button a::after {
    display: none !important;
}

.nav-button a:hover::after {
    display: none !important;
}


/* ===== CORREÇÃO DA NAVBAR NO SCROLL ===== */
header.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}

header.scrolled .logo-text {
    color: var(--primary-blue) !important;
}

header.scrolled nav ul li a {
    color: var(--primary-blue) !important;
}

header.scrolled nav ul li a:hover {
    color: var(--secondary-yellow) !important;
}

header.scrolled .menu-toggle span {
    background-color: var(--primary-blue) !important;
}

/* Ajuste específico para os botões na navbar com scroll */
header.scrolled .btn-nav {
    color: white !important;
    /* Mantém o texto branco nos botões */
}

header.scrolled .btn-nav-green:hover,
header.scrolled .btn-nav-primary:hover {
    color: var(--dark-gray) !important;
    /* Cor do texto no hover */
}

/* Manter a cor dos botões mesmo com scroll */
header.scrolled .btn-nav-green {
    background: #28a745 !important;
    border-color: #28a745 !important;
}

header.scrolled .btn-nav-primary {
    background: var(--secondary-yellow) !important;
    border-color: var(--secondary-yellow) !important;
    color: var(--dark-gray) !important;
}


/* Ajustes de responsividade para os botões */
@media (max-width: 992px) {
    .nav-button {
        margin: 10px 0;
        width: 100%;
        margin-left: 0;
    }

    .btn-nav {
        display: block;
        text-align: center;
        margin: 8px 0;
        padding: 12px 20px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-button {
        margin: 8px 0;
    }

    .btn-nav {
        padding: 14px 20px;
        font-size: 1rem;
    }

    /* Garantir que os botões fiquem visíveis no menu mobile */
    nav ul.show .nav-button {
        display: block;
    }
}
    /* Navegação - ESTILO ATUALIZADO */
    nav ul {
        display: flex;
        list-style: none;
    }

    nav ul li {
        position: relative;
        margin-left: 25px;
    }

    nav ul li a {
        color: var(--text-white);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        padding: 15px 0;
        display: block;
        font-family: 'Poppins', sans-serif;
        position: relative;
        font-size: 16px;
    }

    nav ul li a:hover {
        color: var(--secondary-yellow);
    }

    nav ul li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background-color: var(--secondary-yellow);
        transition: width 0.3s ease;
    }

    nav ul li a:hover::after {
        width: 100%;
    }

    /* Submenu - ESTILO ATUALIZADO */
    .submenu {
        display: none;
        position: absolute;
        background-color: var(--white);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        border-radius: 6px;
        width: 260px;
        z-index: 1000;
        top: 100%;
        left: 0;
        padding: 10px 0;
        border-top: 3px solid var(--secondary-yellow);
    }

    nav ul li:hover .submenu {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .submenu a {
        color: var(--dark-gray) !important;
        padding: 12px 20px;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-family: 'Poppins', sans-serif;
        font-size: 15px;
        transition: all 0.2s ease;
    }

    .submenu a:hover {
        background-color: var(--menu-hover);
        color: var(--primary-blue) !important;
        padding-left: 25px;
    }

    .submenu a i {
        margin-right: 8px;
        color: var(--primary-blue);
    }

    /* Menu mobile - ESTILO ATUALIZADO */
    .menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 100%;
        height: 3px;
        background-color: var(--text-white);
        border-radius: 5px;
        transition: all 0.3s;
    }

    /* Animação para o submenu */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /* Carrossel principal */
.hero-carousel {
    position: relative;
    height: 85vh;
    /* Ocupa 100% da altura da viewport */
    overflow: hidden;
    width: 100%;
}
    .carousel-slides {
        display: flex;
        width: 400%;
        height: 100%;
        transition: transform 0.8s ease-in-out;
    }

    .carousel-slide {
        width: 25%;
        height: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slide-content {
        text-align: center;
        color: var(--white);
        z-index: 2;
        padding: 0 20px;
        max-width: 800px;
    }

    .slide-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .slide-content p {
        font-size: 22px;
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .carousel-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
    }

    .slide-1 {
        background: url('../../imagens/FotoCalibracaoGeral.png') no-repeat center center/cover;
    }

    .slide-2 {
        background: url('../../imagens/FotoQualificacao.png') no-repeat center center/cover;
    }

    .slide-3 {
        background: url('../../imagens/FotoValidacao.png') no-repeat center center/cover;
    }

    .slide-4 {
        background: url('../../imagens/Revisao.png') no-repeat center center/cover;
    }

    .carousel-controls {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        z-index: 10;
    }

    .carousel-control {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        margin: 0 5px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .carousel-control.active {
        background-color: var(--white);
    }

    .carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
        z-index: 10;
    }

    .carousel-nav button {
        background-color: rgba(255, 255, 255, 0.3);
        border: none;
        color: var(--white);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .carousel-nav button:hover {
        background-color: rgba(255, 255, 255, 0.5);
    }

    .btn {
        display: inline-block;
        background-color: var(--secondary-yellow);
        color: var(--dark-gray);
        padding: 14px 32px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.3s;
        font-family: 'Poppins', sans-serif;
        border: none;
        cursor: pointer;
        font-size: 16px;
    }

    .btn:hover {
        background-color: #e6b800;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* Seção de serviços */
    .services {
        background-color: var(--white);
    }

    .section-title {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-title h2 {
        font-size: 36px;
        color: var(--primary-blue);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--secondary-yellow);
    }

    .section-title p {
        color: var(--medium-gray);
        max-width: 700px;
        margin: 20px auto 0;
        font-size: 18px;
    }

    .services-grid {
        display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 60px 0;
    }

    .service-card {
        background-color: var(--white);
        border-radius: 8px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s, box-shadow 0.3s;
        border-top: 4px solid var(--primary-blue);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .service-icon {
        font-size: 54px;
        color: var(--primary-blue);
        margin-bottom: 25px;
    }

    .service-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
        color: var(--dark-blue);
    }

    .service-card p {
        color: var(--medium-gray);
        margin-bottom: 25px;
    }

    /* Seção de parceiros */
                /* Estilos do Carrossel Automático */
                .partners {
                    background-color: var(--light-gray);
                    overflow: hidden;
                    padding: 80px 0;
                    border-radius: 12px;
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                }
        
                .partners-container {
                    position: relative;
                    max-width: 100%;
                    margin: 40px auto;
                    overflow: hidden;
                }
        
                .partners-track {
                    display: flex;
                    animation: scroll 60s linear infinite;
                    width: calc(250px * 46);
                    /* 23 clientes x 2 = 46 */
                }
        
                .partner-item {
                    text-align: center;
                    padding: 20px;
                    flex: 0 0 auto;
                    width: 250px;
                    transition: transform 0.3s;
                }
        
                .partner-item:hover {
                    transform: translateY(-5px);
                }
        
                .partner-logo {
                    height: 100px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-bottom: 15px;
                    background: white;
                    border-radius: 12px;
                    padding: 15px;
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                }
        
                .partner-logo img {
                    max-width: 100%;
                    max-height: 70px;
                    transition: all 0.3s;
                }
        
                .partner-name {
                    font-weight: 600;
                    color: var(--primary-blue);
                    font-size: 0.9rem;
                    margin-top: 10px;
                }
        
                /* Animação do carrossel */
                @keyframes scroll {
                    0% {
                        transform: translateX(0);
                    }
        
                    100% {
                        transform: translateX(calc(-250px * 23));
                        /* Movemos 23 itens */
                    }
                }
        
                .partners-container:hover .partners-track {
                    animation-play-state: paused;
                }
        
                /* Indicadores de progresso */
                .progress-bar {
                    height: 4px;
                    width: 100%;
                    background: rgba(0, 0, 0, 0.1);
                    margin-top: 30px;
                    position: relative;
                    overflow: hidden;
                    border-radius: 2px;
                }
        
                .progress-fill {
                    position: absolute;
                    height: 100%;
                    width: 100%;
                    background: var(--primary-blue);
                    animation: progress 60s linear infinite;
                    transform-origin: left center;
                }
        
                @keyframes progress {
                    0% {
                        transform: scaleX(0);
                    }
        
                    100% {
                        transform: scaleX(1);
                    }
                }
        
                .partners-container:hover .progress-fill {
                    animation-play-state: paused;
                }
        
                .note {
                    text-align: center;
                    margin-top: 20px;
                    color: #666;
                    font-size: 0.9rem;
                }

  /* Seção Sobre - Estilo Modernizado */
  .about {
      background-color: var(--white);
      position: relative;
      overflow: hidden;
  }

  .about::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      background-color: var(--light-gold);
      border-radius: 50%;
      opacity: 0.3;
      z-index: 0;
  }

  .about-content {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
  }

  .about-text h2 {
      font-size: 2.5rem;
      color: var(--secondary-blue);
      margin-bottom: 25px;
      font-weight: 700;
      position: relative;
  }

  .about-text h2::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 70px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
      border-radius: 2px;
  }

  .founded-date {
      display: flex;
      align-items: center;
      color: var(--medium-gray);
      font-size: 1.1rem;
      margin-bottom: 25px;
      padding: 12px 20px;
      background-color: var(--light-gold);
      border-left: 4px solid var(--accent-gold);
      border-radius: 0 4px 4px 0;
  }

  .founded-date i {
      margin-right: 10px;
      color: var(--accent-gold);
  }

  .about-text p {
      margin-bottom: 22px;
      color: var(--dark-gray);
      font-size: 1.05rem;
      line-height: 1.8;
      text-align: justify;
  }

  .about-text strong {
      color: var(--secondary-blue);
      font-weight: 600;
  }

  .about-text em {
      color: var(--primary-blue);
      font-style: italic;
      font-weight: 500;
  }

  .btn {
      display: inline-block;
      padding: 14px 32px;
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
      color: var(--white);
      text-decoration: none;
      border-radius: 4px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
      margin-top: 10px;
  }

  .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 86, 179, 0.3);
  }

  .about-image {
      position: relative;
      height: 100%;
  }

  .about-image::before {
      content: '';
      position: absolute;
      top: -20px;
      right: -20px;
      width: 100%;
      height: 100%;
      border: 2px solid var(--accent-gold);
      border-radius: 8px;
      z-index: -1;
  }

  .about-image img {
      width: 100%;
      height: 100%;
      min-height: 450px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
  }

  .about-image:hover img {
      transform: scale(1.02);
  }

  /* Diferenciais em formato de cards */
  .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 70px;
  }

  .feature {
      background: var(--white);
      padding: 35px 30px;
      border-radius: 8px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
      border-top: 4px solid transparent;
      position: relative;
      overflow: hidden;
  }

  .feature:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
      border-top: 4px solid var(--accent-gold);
  }

  .feature-icon {
      font-size: 2.8rem;
      color: var(--primary-blue);
      margin-bottom: 25px;
      display: inline-block;
      background: var(--light-gold);
      width: 70px;
      height: 70px;
      line-height: 70px;
      text-align: center;
      border-radius: 12px;
  }

  .feature h3 {
      font-size: 1.35rem;
      margin-bottom: 18px;
      color: var(--secondary-blue);
      font-weight: 600;
  }

  .feature p {
      color: var(--medium-gray);
      line-height: 1.7;
      margin-bottom: 0;
  }

  /* Responsividade */
  @media (max-width: 1024px) {
      .about-content {
          gap: 40px;
      }

      .about-text h2 {
          font-size: 2.2rem;
      }
  }

  @media (max-width: 992px) {
      .about-content {
          grid-template-columns: 1fr;
          gap: 50px;
      }

      .about-image {
          order: -1;
          height: 400px;
      }

      .about-image::before {
          top: -15px;
          right: -15px;
      }
  }

  @media (max-width: 768px) {
      .section-padding {
          padding: 60px 0;
      }

      .about-text h2 {
          font-size: 2rem;
      }

      .features-grid {
          grid-template-columns: 1fr;
          margin-top: 50px;
      }

      .feature {
          padding: 25px 20px;
      }
  }

  @media (max-width: 576px) {
      .about-image {
          height: 320px;
      }

      .about-text h2 {
          font-size: 1.8rem;
      }

      .founded-date {
          font-size: 1rem;
          padding: 10px 15px;
      }

      .btn {
          padding: 12px 25px;
          width: 100%;
          text-align: center;
      }
  }
    /* Seção de contato */
    .contact {
        background-color: var(--white);
    }

    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .contact-info h2 {
        font-size: 36px;
        color: var(--primary-blue);
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }

    .contact-info h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: var(--secondary-yellow);
    }

    .contact-info p {
        margin-bottom: 20px;
        color: var(--medium-gray);
        font-size: 17px;
    }

    .contact-details {
        margin-top: 30px;
    }

    .contact-details p {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        color: var(--dark-gray);
    }

    .contact-icon {
        margin-right: 15px;
        color: var(--primary-blue);
        font-size: 20px;
        width: 24px;
        text-align: center;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        width: 100%;
        padding: 15px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        transition: border-color 0.3s;
    }

    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
        border-color: var(--primary-blue);
        outline: none;
    }

    .contact-form textarea {
        height: 150px;
        resize: vertical;
    }

    /* WhatsApp flutuante */
    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 40px;
        right: 40px;
        background-color: #25d366;
        color: var(--white);
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease-in-out;
        animation: pulse 2s infinite;
    }

    .whatsapp-float:hover {
        background-color: #128C7E;
        transform: scale(1.1);
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }

        70% {
            box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }

    /* Rodapé */
    footer {
        background-color: var(--dark-blue);
        color: var(--white);
        padding: 70px 0 20px;
    }

    .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 40px;
    }

    .footer-section h3 {
        font-size: 22px;
        margin-bottom: 25px;
        color: var(--secondary-yellow);
        position: relative;
        display: inline-block;
    }

    .footer-section h3::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: var(--secondary-yellow);
    }

    .footer-section p,
    .footer-section a {
        color: #ccc;
        margin-bottom: 12px;
        display: block;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-section a:hover {
        color: var(--secondary-yellow);
    }

    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .social-links a {
        font-size: 20px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s;
    }

    .social-links a:hover {
        background-color: var(--secondary-yellow);
        color: var(--dark-blue);
    }

    .copyright {
        text-align: center;
        margin-top: 60px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #ccc;
    }

    /* Responsividade - ATUALIZADA */
    @media (max-width: 992px) {

        .about-content,
        .contact-container {
            grid-template-columns: 1fr;
        }

        .about-image {
            order: -1;
        }

        nav ul {
            margin-left: 0;
        }

        nav ul li {
            margin-left: 15px;
        }
    }

    @media (max-width: 768px) {
        .header-container {
            flex-direction: row;
            text-align: left;
            justify-content: space-between;
            padding: 10px 0;
        }

        nav ul {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            flex-direction: column;
            align-items: flex-start;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            z-index: 999;
        }

        nav ul.show {
            display: flex;
        }

        nav ul li {
            margin: 12px 0;
            width: 100%;
        }

        nav ul li a {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
        }

        .submenu {
            position: static;
            display: none;
            width: 100%;
            box-shadow: none;
            margin-top: 10px;
            background-color: rgba(255, 255, 255, 0.1);
            border: none;
            animation: none;
        }

        nav ul li:hover .submenu {
            display: none;
        }

        .submenu.show {
            display: block;
        }

        .submenu a {
            color: rgba(255, 255, 255, 0.9) !important;
            padding-left: 30px;
        }

        .submenu a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--secondary-yellow) !important;
        }

        .menu-toggle {
            display: flex;
        }

        .hero-carousel {
            height: 500px;
        }

        .slide-content h1 {
            font-size: 32px;
        }

        .slide-content p {
            font-size: 18px;
        }

        .services-grid,
        .features-grid {
            grid-template-columns: 2fr;
        }

        .partner-item {
            width: 200px;
        }

        .whatsapp-float {
            width: 50px;
            height: 50px;
            bottom: 30px;
            right: 30px;
            font-size: 25px;
        }
    }

                 .logo-link {
                     display: flex;
                     align-items: center;
                     text-decoration: none;
                     transition: opacity 0.3s ease;
                 }
        
                 .logo-link:hover {
                     opacity: 0.9;
                 }