   :root {
      --azul-principal: #0c1d3c;
      --dourado: #f0b323;
      --branco: #ffffff;
      --preto: #000000;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif, Arial, Helvetica;
      background-color: var(--branco);
      color: var(--preto);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* NAVBAR */
    .custom-navbar {
      background-color: var(--azul-principal);
      color: var(--preto);
      padding: 1rem 0;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 999;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      border-bottom: 2px solid #f0b323;
    }

    .custom-navbar .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo img {
      max-height: 60px;
    }

    .nav-menu {
      display: flex;
      gap: 2rem;
    }

    .nav-menu a {
      color: var(--branco);
      text-decoration: none;
      font-weight: 600;
      position: relative;
      transition: color 0.3s;
    }

    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--dourado);
      transition: width 0.3s ease-in-out;
    }

    .nav-menu a:hover::after {
      width: 100%;
    }

    .nav-menu a:hover {
      color: var(--dourado);
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .menu-toggle span {
      width: 25px;
      height: 2px;
      background: var(--branco);
      transition: 0.3s;
    }

    @media (max-width: 768px) {
      .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--azul-principal);
        flex-direction: column;
        width: 100%;
        transition: max-height 0.3s ease;
        padding-left: 20px;
        /* espaçamento à esquerda */
        padding-bottom: 20px;
        /* espaçamento inferior extra */
        border-bottom: 2px solid #f0b323;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s;
      }

      .nav-menu.open {
        max-height: 300px;
        visibility: visible;
        opacity: 1;
      }

      .menu-toggle {
        display: flex;
      }

      html,
      body {
        max-width: 100%;
        overflow-x: hidden;
      }

    }

    /* HERO */
    .hero {
      background: linear-gradient(rgba(0, 0, 0, 0.6),
          rgba(0, 0, 0, 0.6)),
        url('../img/hero.png') center/cover no-repeat;
      color: #ffffff;
      height: 100%;
      padding: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-bottom: 2px solid #f0b323;
      min-height: 100vh;
    }




    .hero-content {
      max-width: 800px;
      margin: 0 auto;
      padding: 2rem;
    }

    .hero h2 {
      font-size: 2.5rem;
      color: #f0b323;
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .hero p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
    }

    .hero a {
      background-color: #f0b323;
      color: #fff;
      padding: 0.75rem 2rem;
      font-weight: bold;
      border: none;
      border-radius: 5px;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .hero a:hover {
      background-color: #d89e1c;
    }

    @media (max-width: 768px) {
      .hero {
        height: auto;
        padding: 5rem 1.5rem 3rem;
        /* mais espaço no topo, menos no rodapé */
        background-position: center;
        background-size: cover;
      }

      .hero-content {
        padding: 1rem;
      }

      .hero h2 {
        font-size: 1.8rem;
        line-height: 1.3;
      }

      .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }

      .hero a {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
      }
    }

    .hero .btn-whatsapp {
      font-size: 1rem;
      padding: 0.75rem 2rem;
      gap: 0.5rem;
      display: inline-flex;
      align-items: center;
      border: none;
      border-radius: 6px;
      background-color: #25D366;
      color: #fff;
      font-weight: 600;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
    }

    .hero .btn-whatsapp:hover {
      transform: scale(1.05);
      background-color: #1ebe5b;
      box-shadow: 0 0 18px #25D366, 0 0 30px #25D366;
    }



    .hero .btn-whatsapp i {
      color: #fff !important;
      font-size: 1.2rem;
    }



    /* === SECTION SOBRE === */
    #sobre {
      background-color: #f9f9f9;
      padding: 5rem 1.5rem;
      border-bottom: 2px solid var(--dourado);
    }

    #sobre .container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
    }

    #sobre img {
      width: 240px;
      height: 240px;
      object-fit: cover;
      border-radius: 50%;
      border: 4px solid var(--azul-principal);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    #sobre img:hover {
      transform: scale(1.05);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    }

    #sobre h2 {
      font-size: 2.2rem;
      color: var(--azul-principal);
      margin-bottom: 1.2rem;
      font-weight: 700;
    }

    #sobre p {
      font-size: 1.15rem;
      color: #333;
      margin-bottom: 1rem;
      line-height: 1.75;
      letter-spacing: 0.2px;
    }

    #sobre .container>div {
      flex: 1 1 300px;
    }

    /* === RESPONSIVO MODERNO === */
    @media (max-width: 768px) {
      #sobre {
        padding: 4rem 1rem;
      }

      #sobre .container {
        flex-direction: column;
        text-align: center;
      }

      #sobre img {
        width: 150px;
        height: 150px;
        margin-bottom: 1.0rem;
      }

      #sobre p {
        font-size: 1rem;
        padding: 0 0.5rem;
      }

      #sobre h2 {
        font-size: 1.8rem;
      }
    }

    #equipe {
      background-color: #f5f5f5;
      padding: 5rem 1.5rem;
      border-bottom: 2px solid var(--dourado);
    }

    #equipe .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    #equipe .titulo-secao {
      text-align: center;
      color: var(--azul-principal);
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 3rem;
    }

    .bloco-equipe {
      display: flex;
      align-items: center;
      gap: 3rem;
      margin-bottom: 4rem;
      flex-wrap: wrap;
    }

    .bloco-equipe.inverso {
      flex-direction: row-reverse;
    }

    .bloco-equipe .imagem {
      flex: 1;
      min-width: 180px;
    }

    .bloco-equipe .imagem img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    }

    .bloco-equipe .texto {
      flex: 1;
      min-width: 240px;
    }

    .bloco-equipe .texto p {
      font-size: 1.15rem;
      line-height: 1.75;
      color: #333;
    }

    /* Responsivo */
    @media (max-width: 768px) {
      .bloco-equipe {
        flex-direction: column;
        text-align: center;
      }

      .bloco-equipe.inverso {
        flex-direction: column;
      }

      .bloco-equipe .texto p {
        font-size: 1rem;
      }
    }

    #servicos {
      background-color: #f5f5f5;
      padding: 5rem 1.5rem;
      border-bottom: 2px solid var(--dourado);
    }

    #servicos .titulo-secao {
      text-align: center;
      color: var(--azul-principal);
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 2.5rem;
      /* Aumentamos o espaçamento */
    }

    .cards-servicos {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-bottom: 3rem;
      padding: 0 0.5rem;
      /* Leve margem lateral */
    }

    .card-servico {
      background: #fff;
      border-radius: 10px;
      /* levemente menor */
      padding: 1.5rem;
      /* reduzido de 2rem */
      text-align: center;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card-servico:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    }

    .card-servico i {
      font-size: 2rem;
      /* ligeiramente menor */
      color: var(--dourado);
      margin-bottom: 1rem;
    }

    .card-servico h3 {
      font-size: 1.15rem;
      color: var(--azul-principal);
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

    .card-servico p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.5;
    }

    .servicos-cta {
      text-align: center;
      margin-top: 2rem;
    }

    .btn-saiba-mais {
      background-color: var(--dourado);
      color: var(--preto);
      padding: 0.75rem 2rem;
      font-weight: 600;
      font-size: 1rem;
      border: none;
      border-radius: 5px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    }

    .btn-saiba-mais:hover {
      background-color: #e0a720;
      transform: scale(1.04);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    }

    /* Responsivo */
    @media (max-width: 576px) {
      .btn-saiba-mais {
        width: 100%;
        display: inline-block;
      }
    }

    #contato {
      background-color: #fefefe;
      padding: 5rem 1.5rem;
      border-bottom: 2px solid var(--dourado);
      text-align: center;
    }

    #contato .titulo-secao {
      font-size: 2rem;
      color: var(--azul-principal);
      font-weight: 700;
      margin-bottom: 2rem;
    }

    .contato-grid {
      display: flex;
      gap: 2rem;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .mapa-contato {
      flex: 1;
      min-width: 280px;
    }

    .info-contato {
      flex: 1;
      min-width: 280px;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      text-align: left;
    }

    .info-contato .info-item {
  display: flex;
  align-items: center;      /* Alinha verticalmente o ícone com o texto */
  gap: 0.8rem;              /* Espaço entre o ícone e o texto */
  font-size: 1.1rem;
  color: #333;
  flex-wrap: nowrap;        /* Impede quebra do texto abaixo do ícone */
}


    .info-contato .info-item i {
      .info-contato .info-item i {
        font-size: 1.3rem;
        color: var(--dourado);
        min-width: 20px;
        /* mantém alinhado mesmo com ícones diferentes */
      }

    }

    .contato-cta {
      text-align: center;
      margin-top: 2rem;
    }

    .btn-contato {
      background-color: var(--dourado);
      color: var(--preto);
      padding: 0.75rem 2rem;
      font-weight: 600;
      font-size: 1rem;
      border-radius: 5px;
      text-decoration: none;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .btn-contato i {
      margin-right: 0.5rem;
      font-size: 1.2rem;
    }

    .btn-contato:hover {
      background-color: #e0a720;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    /* Responsivo */
    @media (max-width: 768px) {
      .contato-grid {
        flex-direction: column;
        align-items: center;
      }

      .info-contato {
        text-align: center;
        align-items: center;
      }

      .info-contato .info-item {
        justify-content: center;
      }

      .btn-contato {
        width: 100%;
      }
    }

    .footer {
      background-color: var(--azul-principal);
      color: var(--branco);
      padding: 4rem 1.5rem 2rem;
      border-top: 2px solid var(--dourado);
      font-size: 0.95rem;
    }

    .grid-footer {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-bloco h4 {
      color: var(--dourado);
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }

    .footer-bloco p {
      margin-bottom: 0.7rem;
      line-height: 1.5;
    }

    .footer-bloco ul {
      list-style: none;
      padding: 0;
    }

    .footer-bloco ul li {
      margin-bottom: 0.5rem;
    }

    .footer-bloco ul li a {
      color: var(--branco);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-bloco ul li a:hover {
      color: var(--dourado);
    }

    .footer-logo {
      width: 160px;
      margin-bottom: 1rem;
    }

    .redes-sociais {
      display: flex;
      gap: 1rem;
      margin-top: 0.5rem;
    }

    .redes-sociais a {
      color: var(--branco);
      font-size: 1.6rem;
      transition: color 0.3s ease;
    }

    .redes-sociais a:hover {
      color: var(--dourado);
    }

    .footer-barra {
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 2rem;
      padding-top: 1rem;
      font-size: 0.85rem;
      color: #ccc;
    }

    /* Responsivo */
    @media (max-width: 576px) {
      .footer-logo {
        margin: 0 auto 1rem;
      }

      .footer-bloco {
        text-align: center;
      }

      .redes-sociais {
        justify-content: center;
      }
    }

    /* === BOTÕES FLUTUANTES E CHATBOT === */

/* 1. Botão WhatsApp (DIREITA - ACIMA DO CHAT) */
.btn-zap-flutuante {
  position: fixed;
  bottom: 100px; /* Fica 100px do chão para dar espaço ao chat */
  right: 25px;   /* Agora na direita */
  background-color: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.btn-zap-flutuante:hover {
  transform: scale(1.1);
  background-color: #1ebe5b;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.btn-zap-flutuante:hover {
  transform: scale(1.1);
  background-color: #1ebe5b;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* 2. Container do Chatbot (Direita) */
.chatbot-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1001;
  font-family: 'Poppins', sans-serif;
}

/* Botão Toggle (Bolinha do Chat) */
.btn-chat-toggle {
  background-color: var(--azul-principal);
  color: var(--dourado);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-chat-toggle:hover {
  transform: scale(1.1);
  background-color: #061229;
}

/* Janela do Chat */
.chat-window {
  position: absolute;
  bottom: 80px; /* Acima do botão */
  right: 0;
  width: 320px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  overflow: hidden;
  
  /* Efeito de aparecer/desaparecer */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

/* Classe que o JS vai adicionar para abrir */
.chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-header {
  background: var(--azul-principal);
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--dourado);
}

.chat-title {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

#close-chat {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.chat-body {
  padding: 15px;
  background-color: #f9f9f9;
  max-height: 350px;
  overflow-y: auto;
}

.msg-bot {
  background: #e6efff;
  color: #333;
  padding: 10px 15px;
  border-radius: 15px 15px 15px 0;
  font-size: 0.9rem;
  margin-bottom: 15px;
  border: 1px solid #d1e0ff;
}

.chat-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-opt {
  background: #fff;
  border: 1px solid var(--dourado);
  color: var(--azul-principal);
  padding: 10px;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-opt:hover {
  background: var(--dourado);
  color: #fff;
}

/* Responsivo para celulares pequenos */
@media (max-width: 400px) {
  .chat-window {
    width: 280px;
    right: -10px; /* Ajuste fino para não cortar a tela */
  }
}