  /* Reset básico */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Poppins', sans-serif;
  }

  /* Navbar */
  .navbar {
      background-color: white;
      padding: 10px 40px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      top: 0;
      z-index: 1000;
  }

  .navbar-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1300px;
      margin: 0 auto;
      position: relative;
  }

  .hamburger {
      display: none;
      font-size: 28px;
      cursor: pointer;
      color: #0e1d60;
  }

  /* Logo */
  .logo {
      height: 90px;
  }

  /* Links */
  .nav-links {
      display: flex;
      align-items: center;
      gap: 25px;
      list-style: none;
  }

  .nav-links a {
      text-decoration: none;
      color: black;
      font-size: 16px;
      position: relative;
      transition: color 0.3s;
  }

  .nav-links a:hover {
      color: #0a1472;
      /* hover azul escuro */
  }

  .nav-links a.active {
      color: #0e1d60;
      /* mega escuro */
      font-weight: bold;
  }

  .dropdown {
      position: relative;
  }

  .dropdown>a>i {
      margin-left: 6px;
      font-size: 0.75rem;
      vertical-align: middle;
      color: #0e1d60;
  }

  .dropdown-content a i {
      margin-right: 8px;
      color: #0e1d60;
  }

  .dropdown-content {
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity 0.3s ease, transform 0.3s ease;
      position: absolute;
      background-color: white;
      top: 100%;
      left: 0;
      min-width: 220px;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
      z-index: 2000;
      padding: 10px 0;
  }

  .dropdown-content li {
      list-style: none;
  }

  .dropdown-content a {
      display: flex;
      align-items: center;
      padding: 10px 20px;
      font-family: 'Poppins', sans-serif;
      color: black;
      text-decoration: none;
      transition: background-color 0.2s, color 0.2s;
  }

  .dropdown-content a:hover {
      background-color: #f0f0f0;
      color: #0a1472;
  }

  .dropdown:hover .dropdown-content {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  /* Ícone da setinha */
  .dropdown i {
      margin-left: 6px;
      font-size: 12px;
      color: #0a1472;
  }

  /* Espaçamento das setas nos dropdowns */
  .dropdown-content a i {
      margin-right: 8px;
      color: #0a1472;
  }

  /* Setinha ao lado de "Serviços" mais próxima */
  .dropdown>a>i {
      margin-left: 6px;
      font-size: 0.75rem;
      vertical-align: middle;
  }

  .cta-button {
      background-color: #0e1d60;
      color: white;
      border: 2px solid #0e1d60;
      padding: 10px 18px;
      text-decoration: none;
      font-family: 'Poppins', sans-serif;
      border-radius: 4px;
      transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  }

  .cta-button:hover {
      background-color: #003fcc;
      color: white;
      border-color: #003fcc;
  }

  .hero {
      position: relative;
      width: 100%;
      height: 65vh;
      /* reduzido para não ocupar toda a tela */
      background-image: url('Images/Imagem\ Hero.jpg');
      /* atualize o caminho conforme necessário */
      background-size: cover;
      background-position: center 15%;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      /* alinha o conteúdo à esquerda */
      padding-left: 7%;
      /* espaçamento da esquerda (ajuste conforme necessário) */
      z-index: 0;
  }

  .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 16, 64, 0.7);
      /* overlay azul escuro */
      z-index: 1;
  }

  .hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      color: white;
  }

  .hero-content h4 {
      font-size: 1rem;
      margin-bottom: 10px;
      font-weight: 600;
      color: #ffffff;
      font-family: 'Poppins', sans-serif;
  }

  .hero-content h1 {
      font-size: 2.75rem;
      line-height: 1.2;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      margin-bottom: 20px;
  }

  .hero-content p {
      font-size: 1rem;
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
  }

  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      color: white;
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
      animation-delay: 0.3s;
  }

  .hero-content h4 {
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
      animation-delay: 0.4s;
  }

  .hero-content h1 {
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
      animation-delay: 0.6s;
  }

  .hero-content p {
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
      animation-delay: 0.8s;
  }

  /* ===== SEÇÃO SOBRE - PÁGINA INICIAL ===== */
  .sobre-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 80px 10%;
      gap: 50px;
      background-color: white;
  }

  .sobre-text {
      flex: 1;
      text-align: left;
  }

  .sobre-text .section-subtitle {
      color: #0e1d60;
      /* Azul escuro para combinar com seu site */
      font-size: 14px;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 10px;
      display: block;
      letter-spacing: 1px;
  }

  .sobre-text h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: black;
      line-height: 1.2;
  }

  .sobre-text p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 15px;
      color: #555;
      max-width: 100%;
  }

  .sobre-img {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .sobre-img img {
      width: 100%;
      max-width: 500px;
      border-radius: 12px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
  }

  .sobre-img img:hover {
      transform: translateY(-5px);
  }

  /* ===== RESPONSIVIDADE ===== */
  @media (max-width: 1024px) {
      .sobre-section {
          padding: 60px 5%;
          gap: 40px;
      }

      .sobre-text h2 {
          font-size: 2.2rem;
      }
  }

  @media (max-width: 768px) {
      .sobre-section {
          flex-direction: column;
          padding: 50px 5%;
          text-align: center;
      }

      .sobre-text {
          text-align: center;
      }

      .sobre-text h2 {
          font-size: 2rem;
      }

      .sobre-text p {
          font-size: 1rem;
      }

      .sobre-img {
          order: -1;
          /* Coloca a imagem antes do texto no mobile se preferir */
          margin-bottom: 30px;
      }

      .sobre-img img {
          max-width: 400px;
      }
  }

  @media (max-width: 480px) {
      .sobre-section {
          padding: 40px 1.5rem;
      }

      .sobre-text h2 {
          font-size: 1.75rem;
      }

      .sobre-text p {
          font-size: 0.95rem;
      }

      .sobre-img img {
          max-width: 100%;
      }
  }

  /* ===== EFEITOS VISUAIS OPCIONAIS ===== */
  /* Se quiser adicionar um elemento decorativo */
  .sobre-text::before {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, #0e1d60, #0057ff);
      margin-bottom: 20px;
      border-radius: 2px;
  }

  @media (max-width: 768px) {
      .sobre-text::before {
          margin: 0 auto 20px auto;
      }
  }

  /* Botão opcional para linkar com página "Quem Somos" */
  .sobre-text .btn-saiba-mais {
      display: inline-block;
      background: #0e1d60;
      color: white;
      padding: 12px 30px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      margin-top: 20px;
      transition: all 0.3s ease;
  }

  .sobre-text .btn-saiba-mais:hover {
      background: #0057ff;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(14, 29, 96, 0.2);
  }

  /* ===== SEÇÃO VALORES ===== */
  .valores-section {
      padding: 6rem 0;
      background: #f8f9ff;
  }

  .valores-section .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      text-align: center;
  }

  .valores-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      margin-top: 3rem;
  }

  .valor-card {
      background: white;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(14, 29, 96, 0.08);
      transition: transform 0.3s ease;
  }

  .valor-card:hover {
      transform: translateY(-10px);
  }

  .valor-icon {
      width: 70px;
      height: 70px;
      background: #0e1d60;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: white;
      font-size: 1.8rem;
  }

  .valor-card h3 {
      font-size: 1.2rem;
      color: #0e1d60;
      margin-bottom: 1rem;
  }

  .valor-card p {
      color: #555;
      font-size: 0.95rem;
      line-height: 1.5;
  }

  /* ===== SEÇÃO VISÃO ===== */
  .visao-section {
      padding: 6rem 0;
      background: white;
  }

  .visao-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      gap: 4rem;
  }

  .visao-img {
      flex: 1;
  }

  .visao-img img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }

  .visao-text {
      flex: 1;
  }

  .visao-lista {
      list-style: none;
      padding: 0;
      margin: 2rem 0;
  }

  .visao-lista li {
      margin-bottom: 1rem;
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
  }

  .visao-lista i {
      color: #0e1d60;
      margin-top: 0.2rem;
  }

  .visao-lista strong {
      color: #0e1d60;
  }

  .visao-text .destaque {
      background: #f0f5ff;
      padding: 1.5rem;
      border-radius: 8px;
      border-left: 4px solid #0e1d60;
      font-weight: 600;
      color: #0e1d60;
  }

  /* ===== SEÇÃO LIDERANÇA ===== */
  .lideranca-section {
      padding: 6rem 0;
      background: linear-gradient(135deg, #0e1d60 0%, #1a2b7a 100%);
      color: white;
      text-align: center;
  }

  .lideranca-section .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
  }

  .lideranca-section .section-subtitle {
      color: #8ba1ff;
  }

  .lideranca-desc {
      max-width: 800px;
      margin: 1rem auto 3rem;
      color: #ccd6ff;
      line-height: 1.6;
  }

  .lideranca-info {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
  }

  .info-card {
      background: rgba(255, 255, 255, 0.05);
      padding: 2rem;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
  }

  .info-card:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-5px);
  }

  .info-card h3 {
      color: white;
      font-size: 1.2rem;
      margin-bottom: 1rem;
  }

  .info-card p {
      color: #ccd6ff;
      font-size: 0.95rem;
      line-height: 1.5;
  }

  /* ===== DESTAQUES ===== */
  .destaques-container {
      display: flex;
      justify-content: space-between;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid #eef1f7;
  }

  .destaque-item {
      text-align: center;
  }

  .destaque-item h3 {
      font-size: 2.5rem;
      color: #0e1d60;
      margin-bottom: 0.5rem;
      font-weight: 700;
  }

  .destaque-item p {
      font-size: 0.9rem;
      color: #555;
  }

  /* ===== RESPONSIVIDADE ===== */
  @media (max-width: 1024px) {
      .valores-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .visao-container {
          flex-direction: column;
          gap: 3rem;
      }

      .lideranca-info {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 768px) {
      .valores-grid {
          grid-template-columns: 1fr;
          max-width: 400px;
          margin-left: auto;
          margin-right: auto;
      }

      .destaques-container {
          flex-wrap: wrap;
          justify-content: center;
          gap: 2rem;
      }

      .lideranca-info {
          grid-template-columns: 1fr;
          max-width: 400px;
          margin-left: auto;
          margin-right: auto;
      }

      .valor-card,
      .info-card {
          padding: 1.5rem;
      }
  }

  @media (max-width: 480px) {
      .destaque-item {
          flex: 0 0 50%;
          margin-bottom: 1.5rem;
      }

      .destaque-item h3 {
          font-size: 2rem;
      }
  }

  /* ===== SEÇÃO CLIENTES ===== */
  .clientes-section {
      padding: 6rem 0;
      background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
      text-align: center;
  }

  .clientes-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
  }

  .clientes-section .subtitulo {
      text-transform: uppercase;
      font-size: 0.85rem;
      font-weight: 600;
      color: #0e1d60;
      margin-bottom: 0.5rem;
      letter-spacing: 1px;
  }

  .clientes-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: black;
  }

  .clientes-desc {
      font-size: 1.1rem;
      color: #555;
      max-width: 600px;
      margin: 0 auto 3rem;
      line-height: 1.6;
  }

  /* Container da imagem de logos */
  .clientes-logos {
      margin: 2rem auto;
      padding: 3rem;
      background: white;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(14, 29, 96, 0.08);
      border: 1px solid #eef1f7;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
  }

  .clientes-logos img {
      width: 100%;
      max-width: 1000px;
      height: auto;
      transition: transform 0.5s ease;
  }

  /* Efeito de zoom sutil no hover */
  .clientes-logos:hover img {
      transform: scale(1.02);
  }

  .clientes-nota {
      margin-top: 2rem;
      font-size: 1rem;
      color: #0e1d60;
      font-weight: 600;
      padding: 0.75rem 1.5rem;
      background: rgba(14, 29, 96, 0.05);
      border-radius: 50px;
      display: inline-block;
  }

  /* ===== RESPONSIVIDADE ===== */
  @media (max-width: 1024px) {
      .clientes-section {
          padding: 5rem 0;
      }

      .clientes-logos {
          padding: 2rem;
      }
  }

  @media (max-width: 768px) {
      .clientes-section h2 {
          font-size: 2rem;
      }

      .clientes-logos {
          padding: 1.5rem;
          margin: 1.5rem auto;
      }

      .clientes-desc {
          font-size: 1rem;
          margin-bottom: 2rem;
      }
  }

  @media (max-width: 480px) {
      .clientes-section {
          padding: 4rem 1rem;
      }

      .clientes-section h2 {
          font-size: 1.75rem;
      }

      .clientes-logos {
          padding: 1rem;
          border-radius: 12px;
      }
  }

  /* ===== VERSÃO COM CARROSSEL (alternativa) ===== */
  /*
Se depois quiser fazer um carrossel com a mesma imagem,
pode adicionar efeito de parallax ou animação
*/

  /* ===== SEÇÃO CONTATO - IDEA 2 ===== */
  .contato-section {
      padding: 6rem 0;
      background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
      text-align: center;
  }

  .contato-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
  }

  .contato-subtitulo {
      text-transform: uppercase;
      font-size: 0.85rem;
      font-weight: 600;
      color: #0e1d60;
      margin-bottom: 0.5rem;
      letter-spacing: 1px;
  }

  .contato-titulo {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: black;
  }

  /* Grid de Opções */
  .opcoes-contato {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin: 3rem 0;
  }

  .opcao-card {
      background: white;
      border-radius: 16px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 10px 30px rgba(14, 29, 96, 0.08);
      border: 1px solid #eef1f7;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100%;
  }

  .opcao-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(14, 29, 96, 0.12);
  }

  /* Ícones */
  .opcao-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin-bottom: 1.5rem;
  }

  .whatsapp-icon {
      background: rgba(37, 211, 102, 0.1);
      color: #25D366;
  }

  .email-icon {
      background: rgba(234, 67, 53, 0.1);
      color: #EA4335;
  }

  .local-icon {
      background: rgba(66, 133, 244, 0.1);
      color: #4285F4;
  }

  .opcao-card h3 {
      font-size: 1.3rem;
      font-weight: 600;
      color: black;
      margin-bottom: 0.75rem;
  }

  .opcao-card p {
      color: #555;
      line-height: 1.6;
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
      flex-grow: 1;
  }

  /* Botões */
  .opcao-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: #0e1d60;
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      width: 100%;
      max-width: 200px;
  }

  .opcao-btn:hover {
      background: #0057ff;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(14, 29, 96, 0.2);
  }

  .opcao-btn.ativo {
      background: #EA4335;
  }

  /* Botões específicos */
  .email-btn {
      background: #EA4335;
  }

  .email-btn:hover {
      background: #d33426;
  }

  .local-btn {
      background: #4285F4;
  }

  .local-btn:hover {
      background: #3367d6;
  }

  /* Mapa */
  .mapa-container {
      margin: 2rem auto;
      max-width: 800px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      border: 1px solid #eef1f7;
      animation: slideDown 0.4s ease;
  }

  @keyframes slideDown {
      from {
          opacity: 0;
          transform: translateY(-20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .mapa-header {
      background: #0e1d60;
      color: white;
      padding: 1rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .mapa-header h4 {
      margin: 0;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }

  .fechar-mapa {
      background: none;
      border: none;
      color: white;
      font-size: 1.2rem;
      cursor: pointer;
      padding: 0.25rem;
      opacity: 0.7;
      transition: opacity 0.3s ease;
  }

  .fechar-mapa:hover {
      opacity: 1;
  }

  .mapa-info {
      background: white;
      padding: 1rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid #eef1f7;
  }

  .mapa-info p {
      margin: 0;
      color: #555;
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }

  .mapa-link {
      color: #4285F4;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: color 0.3s ease;
  }

  .mapa-link:hover {
      color: #0e1d60;
  }

  /* Horário */
  .contato-horario {
      margin-top: 2rem;
      padding: 1.5rem;
      background: white;
      border-radius: 12px;
      display: inline-block;
      box-shadow: 0 5px 20px rgba(14, 29, 96, 0.05);
      border: 1px solid #eef1f7;
  }

  .contato-horario p {
      margin: 0;
      color: #555;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
  }

  .contato-horario i {
      color: #0e1d60;
  }

  /* ===== RESPONSIVIDADE ===== */
  @media (max-width: 1024px) {
      .opcoes-contato {
          gap: 1.5rem;
      }

      .opcao-card {
          padding: 1.75rem;
      }
  }

  @media (max-width: 768px) {
      .contato-section {
          padding: 4rem 0;
      }

      .contato-titulo {
          font-size: 2rem;
      }

      .opcoes-contato {
          grid-template-columns: 1fr;
          max-width: 500px;
          margin-left: auto;
          margin-right: auto;
      }

      .opcao-card {
          padding: 2rem;
      }

      .mapa-info {
          flex-direction: column;
          gap: 1rem;
          align-items: flex-start;
      }

      .contato-horario p {
          flex-direction: column;
          gap: 0.5rem;
          text-align: center;
      }
  }

  @media (max-width: 480px) {
      .contato-container {
          padding: 0 1.5rem;
      }

      .contato-titulo {
          font-size: 1.75rem;
      }

      .opcao-card {
          padding: 1.5rem;
      }

      .opcao-icon {
          width: 60px;
          height: 60px;
          font-size: 1.75rem;
      }

      .opcao-card h3 {
          font-size: 1.2rem;
      }

      .opcao-btn {
          padding: 0.75rem 1rem;
          font-size: 0.85rem;
      }

      .mapa-header {
          padding: 1rem;
      }

      .mapa-header h4 {
          font-size: 1rem;
      }
  }

  /* Efeitos visuais extras */
  .opcao-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      border-radius: 16px 16px 0 0;
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .opcao-card:nth-child(1)::before {
      background: #25D366;
  }

  .opcao-card:nth-child(2)::before {
      background: #EA4335;
  }

  .opcao-card:nth-child(3)::before {
      background: #4285F4;
  }

  .opcao-card:hover::before {
      opacity: 1;
  }

  /* Tooltip para botão do mapa (quando fechado) */
  .local-btn[title] {
      position: relative;
  }

  .local-btn[title]:hover::after {
      content: attr(title);
      position: absolute;
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: #333;
      color: white;
      padding: 0.5rem;
      border-radius: 4px;
      font-size: 0.8rem;
      white-space: nowrap;
      margin-bottom: 0.5rem;
      z-index: 10;
  }

  /* MANTENDO SEU CSS ORIGINAL E ADICIONANDO AS MELHORIAS */

  .footer {
      background: linear-gradient(to top, #030e46, #0a1472);
      color: white;
      font-family: 'Poppins', sans-serif;
      padding: 40px 20px 20px 20px;
      position: relative;
  }

  .footer-container {
      max-width: 1300px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
      justify-content: space-between;
  }

  .footer-column {
      flex: 1 1 200px;
      min-width: 220px;
  }

  .footer-logo {
      width: 220px;
      margin-bottom: 16px;
  }

  .footer-description {
      font-size: 14px;
      margin-bottom: 20px;
      line-height: 1.6;
      color: #e0e0e0;
  }

  .footer-column h4 {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 12px;
      border-left: 2px solid white;
      padding-left: 8px;
  }

  .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer-column ul li {
      margin-bottom: 10px;
  }

  .footer-column ul li a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s;
      display: flex;
      align-items: center;
  }

  .footer-column ul li a i {
      margin-right: 7px;
      color: white;
      font-size: 10px;
      transition: transform 0.3s;
  }

  .footer-column ul li a:hover {
      color: #004aad;
  }

  .footer-column ul li a:hover i {
      transform: translateX(3px);
  }

  .contact-info li {
      font-size: 14px;
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 10px;
      line-height: 1.4;
  }

  .contact-info li i {
      margin-top: 2px;
      flex-shrink: 0;
  }

  .social-icons {
      display: flex;
      gap: 12px;
  }

  .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: white;
      text-decoration: none;
      transition: all 0.3s;
      font-size: 16px;
  }

  .social-icons a:hover {
      background: #004aad;
      transform: translateY(-3px);
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      margin-top: 30px;
      padding-top: 20px;
      text-align: center;
      font-size: 13px;
      color: #d0d0d0;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
      max-width: 1300px;
      margin-left: auto;
      margin-right: auto;
  }

  .footer-bottom a {
      color: #004aad;
      text-decoration: none;
      font-weight: 600;
  }

  .footer-bottom a:hover {
      text-decoration: underline;
  }

  /* BOTÃO DO WHATSAPP COM ANIMAÇÃO */
  .whatsapp-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25d366;
      color: white;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      z-index: 999;
      transition: all 0.3s ease;
      text-decoration: none;
      animation: pulse-whatsapp 2s infinite;
  }

  .whatsapp-button:hover {
      background-color: #1eb84c;
      transform: scale(1.1);
      box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  }

  .whatsapp-tooltip {
      position: absolute;
      right: 70px;
      background: #333;
      color: white;
      padding: 8px 12px;
      border-radius: 6px;
      font-size: 12px;
      white-space: nowrap;
      opacity: 0;
      transform: translateX(10px);
      transition: all 0.3s ease;
      pointer-events: none;
      font-family: 'Poppins', sans-serif;
  }

  .whatsapp-tooltip::after {
      content: '';
      position: absolute;
      right: -6px;
      top: 50%;
      transform: translateY(-50%);
      border-width: 6px 0 6px 6px;
      border-style: solid;
      border-color: transparent transparent transparent #333;
  }

  .whatsapp-button:hover .whatsapp-tooltip {
      opacity: 1;
      transform: translateX(0);
  }

  @keyframes pulse-whatsapp {
      0% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }

      70% {
          box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
      }

      100% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
  }

  /* RESPONSIVIDADE */
  @media (max-width: 768px) {
      .footer-container {
          gap: 30px;
          justify-content: center;
          text-align: center;
      }

      .footer-column {
          flex: 1 1 100%;
          max-width: 300px;
      }

      .footer-column h4 {
          border-left: none;
          padding-left: 0;
          border-bottom: 2px solid rgba(255, 255, 255, 0.3);
          padding-bottom: 8px;
          display: inline-block;
      }

      .footer-column ul li a {
          justify-content: center;
      }

      .contact-info li {
          justify-content: center;
          text-align: center;
          flex-direction: column;
          gap: 5px;
      }

      .social-icons {
          justify-content: center;
      }

      .footer-bottom {
          flex-direction: column;
          gap: 8px;
          text-align: center;
      }

      .whatsapp-button {
          width: 50px;
          height: 50px;
          font-size: 24px;
          bottom: 15px;
          right: 15px;
      }

      .whatsapp-tooltip {
          display: none;
      }
  }

  @media (max-width: 480px) {
      .footer {
          padding: 30px 15px 15px 15px;
      }

      .footer-logo {
          width: 180px;
      }

      .footer-description {
          font-size: 13px;
      }

      .whatsapp-button {
          width: 45px;
          height: 45px;
          font-size: 22px;
      }
  }

  /* Efeito extra para os ícones de contato */
  .contact-info li {
      position: relative;
      padding-left: 5px;
      transition: transform 0.3s ease;
  }

  .contact-info li:hover {
      transform: translateX(5px);
  }

  /* Link do telefone e email clicáveis */
  .contact-info li:first-child,
  .contact-info li:nth-child(2) {
      cursor: pointer;
  }

  .contact-info li:first-child:hover,
  .contact-info li:nth-child(2):hover {
      color: #004aad;
  }

  /* =========================================
    📱 CELULAR (até 777px)
  ========================================= */
  @media (max-width: 777px) {

      .hamburger {
          display: block;
          margin-left: 0;
          font-size: 28px;
      }

      .nav-links,
      .cta-button {
          display: none;
      }

      .nav-links.active,
      .cta-button.active {
          display: flex;
      }

      .nav-links {
          flex-direction: column;
          width: 100%;
          text-align: center;
          gap: 12px;
          padding-top: 15px;
      }

      .cta-button {
          width: 90%;
          justify-content: center;
      }

      .hamburger i {
          transition: transform .3s;
      }

      .hamburger.active i {
          transform: rotate(90deg);
      }

      .navbar-container {
          flex-direction: row;
          align-items: center;
          justify-content: space-between;
          flex-wrap: wrap;
          width: 100%;
          gap: 0;
      }

      .nav-links {
          flex-direction: column;
          width: 100%;
          text-align: center;
          gap: 20px;
          padding-top: 15px;
      }

      .cta-button {
          width: 90%;
          text-align: center;
          margin-top: 10px;
      }

      .hero-content h1 {
          font-size: 1.8rem;
          text-align: center;
      }

      .hero-content p {
          font-size: 1rem;
          padding: 0 15px;
          text-align: center;
      }

      .servicos-grid {
          grid-template-columns: 1fr;
          gap: 20px;
          padding: 0 20px;
      }

      .servicos-cta-container {
          flex-direction: column;
          text-align: center;
      }

      .servicos-cta-imagem img {
          width: 100%;
          margin-top: 20px;
      }

      .vantagens-grid {
          grid-template-columns: 1fr;
          text-align: center;
          gap: 20px;
          justify-content: center;
      }

      .carousel-card {
          width: 90%;
          margin: 0 auto;
      }

      .passos-contato {
          flex-direction: column;
          align-items: center;
          gap: 15px;
      }

      .footer {
          padding: 30px 15px 15px 15px;
      }

      .footer-container {
          flex-direction: column;
          text-align: center;
          gap: 30px;
      }

      .footer-column {
          min-width: 100%;
      }

      .footer-column h4 {
          border-left: none;
          border-bottom: 2px solid rgba(255, 255, 255, 0.3);
          padding-left: 0;
          padding-bottom: 8px;
          display: inline-block;
          margin-bottom: 15px;
      }

      .footer-column ul li a {
          justify-content: center;
      }

      .contact-info li {
          align-items: center !important;
          justify-content: center;
          text-align: center;
          flex-direction: column;
          gap: 5px;
      }

      .contact-info li i {
          margin-top: 0;
      }

      .social-icons {
          justify-content: center;
      }

      .footer-bottom {
          flex-direction: column;
          gap: 10px;
          text-align: center;
          padding-top: 15px;
          margin-top: 30px;
      }

      .whatsapp-button {
          width: 50px;
          height: 50px;
          font-size: 24px;
          bottom: 15px;
          right: 15px;
      }

      .whatsapp-tooltip {
          display: none;
      }

      /* Ajuste para texto não quebrar mal */
      .contact-info li:nth-child(3) {
          max-width: 250px;
          margin-left: auto;
          margin-right: auto;
      }

      .whatsapp-button {
          bottom: 20px;
          right: 20px;
      }
  }

  /* =========================================
    💻 TABLET / NOTEBOOK (778px a 991px)
  ========================================= */
  @media (min-width: 778px) and (max-width: 991px) {
      .navbar-container {
          flex-wrap: wrap;
          justify-content: space-between;
          padding: 0 30px;
      }

      .nav-links {
          flex-wrap: wrap;
          gap: 15px;
      }

      .hero-content h1 {
          font-size: 2.2rem;
      }

      .servicos-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 25px;
          padding: 0 40px;
      }

      .servicos-cta-container {
          flex-direction: row;
          align-items: center;
          gap: 30px;
          padding: 0 30px;
      }

      .servicos-cta-imagem img {
          width: 80%;
      }

      .vantagens-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 25px;
      }

      .carousel-card {
          width: 70%;
      }

      .passos-contato {
          flex-direction: row;
          justify-content: space-around;
          flex-wrap: wrap;
      }

      .footer-container {
          flex-wrap: wrap;
          justify-content: space-between;
          gap: 30px;
          padding: 0 20px;
      }

      .footer-column {
          flex: 1 1 calc(50% - 20px);
          min-width: 200px;
      }

      .footer-column:first-child {
          flex: 1 1 100%;
          text-align: center;
          margin-bottom: 20px;
      }

      .footer-description {
          max-width: 600px;
          margin-left: auto;
          margin-right: auto;
      }

      .social-icons {
          justify-content: center;
      }

      .footer-bottom {
          padding: 0 20px;
          text-align: center;
          flex-direction: row;
          justify-content: space-between;
      }

      .whatsapp-button {
          width: 55px;
          height: 55px;
          font-size: 26px;
          bottom: 18px;
          right: 18px;
      }
  }

  /* =========================================
    🖥️ PC / DESKTOP (a partir de 992px)
  ========================================= */
  @media (min-width: 992px) {
      .navbar-container {
          max-width: 1300px;
          margin: 0 auto;
          padding: 0 40px;
      }

      .hero-content h1 {
          font-size: 2.8rem;
      }

      .servicos-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 30px;
      }

      .vantagens-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 30px;
      }

      .servicos-cta-container {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 0 60px;
      }

      .footer-container {
          max-width: 1100px;
          gap: 30px;
      }

      .footer-column {
          flex: 1;
      }

      .footer-description {
          font-size: 13px;
      }

      .contact-info li {
          font-size: 13px;
      }
  }