body {
    margin: 0;
    padding-top: 70px;
    overflow-x: hidden;
  }
  
  .logo-clientes {
    max-width: 170px;
    height: auto;
    padding-top: 7px;
  }
  
  .navbar {
    position: fixed;
    background-color: #F5F4F2;
    opacity: 90%;
    padding: 0.5rem 1rem;
    margin: 0;
  }
  
  .navbar::before {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    background-color: #9C0001;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  
  .nav-link, i {
    font-family: "Playfair Display";
    font-size: 100%;
    padding: 0%;
    margin: 0%;
  }
  
  .navbar .nav-link i {
    margin-right: 8px;
  }
  
  #navbartop {
    margin-bottom: 0%;
    padding: 0%;
  }
  
  #navbarNav {
    margin-top: 15px;
  }

  .banner-servicos {
    background-color: #880000; /* vermelho forte */
    height: 200px; /* ajuste a altura conforme necessário */
    padding: 2rem 1rem;
    text-align: center;
  }

  .banner-servicos p {
    font-family: "Playfair Display";
    font-size: 20px;
  }

  .banner-servicos h1 {
    font-family: "Playfair Display";
    font-size: 30px;
    font-weight: 570; /* ou use 'bold' */
  }

  .parallax-section {
    position: relative;
    background-image: url('../../assets/bannerValores.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 15%;
    z-index: 1;
    overflow: hidden;
  }
  
  .parallax-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8); /* Preto com 70% de opacidade */
    z-index: -1;
  }

  .imagem-parallax {
    max-width: 430px;     /* ou outro valor que preferir */
    width: 100%;          /* ocupa até o limite do max-width */
    height: auto;
    object-fit: contain;  /* mantém proporção */
    position: relative;   /* importante para sobrepor corretamente */
    z-index: 2;           /* acima do fundo escuro */
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.7)); /* sombra opcional */
    display: flex;
    flex-direction: column;
    align-items: end;
    padding-top: 12%;
  }  

  .texto-parallax {
    color: white;
    max-width: 500px;
    margin-left: 5%;
    font-family: "Playfair Display";
    font-size: 22px;
  }

  .texto-parallax h2{
    font-family: "lato";
    font-size: 28px;
  }

  .faixa-cinza {
    background-color: #f0f0f0; /* Cor de fundo cinza claro */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px; /* Espaço entre o parallax e a faixa */
    padding: 15px 20px;
  }

  .titulo-central {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: #333;
  }

  .card {
    background-color: #fff;
    max-width: 500px;
    width: 100%;
    display: flex;
    justify-content:center;
    font-size: 20px;
  }

  .card-sem-sombra {
    border: none;
    box-shadow: none; /* remove sombra, se houver */
  }
  
  .titulo-box {
    width: 45%; /* ou use flex-grow: 1 para expandir igualmente */
  }
  
  .titulo-esquerda {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    display: flex;
    justify-content: center;
  }

  .titulo-direita {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    display: flex;
    justify-content: center;
  }

  .icone-card {
    width: 70px;
    height: 70px;
    background-color: white; /* fundo branco */
    color: #0e0404; /* ícone preto */
    border: 4px solid darkgoldenrod; /* borda com cor */
    border-radius: 50%; /* formato de círculo */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px; /* tamanho do ícone */
    margin-right: 15px; /* espaço entre ícone e texto */
    flex-shrink: 0;
  }

  .container-botao-contato {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* ajuste conforme necessário */
  }  
  
  .btn-contato {
    width: 15%;
    height: 20%;
    background: linear-gradient(45deg, #d4af37, #C6AD4A, #d4af37);
    background-size: 70% 70%;
    color: white;
    font-weight: bold;
    font-family: "Playfair Display", serif;
    padding: 5px;
    border: none;
    border-radius: 40px;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: gradientMove 6s infinite ease, glow 2s infinite ease-in-out, pulse 2.5s infinite ease-in-out;
    font-size: 0.9rem;
    cursor: pointer;
    opacity: 1;
    transform: translateY(0);
    max-height: 100px;
    display: flex;
    justify-content: center;
    text-decoration: none; /* Remove underline do link */
  }

  .icon-contato {
    color: white;            /* Cor do ícone */
    font-size: 1rem;         /* Tamanho do ícone */
    margin-right: 5px;       /* Espaço entre ícone e texto */
    padding-top: 3px;
    transition: transform 0.3s ease; /* Suaviza transformações */
  }
  
  .btn-contato:hover .icon-contato {
    transform: scale(1.2);   /* Aumenta um pouco no hover */
    color: #880000;          /* Muda cor ao passar o mouse (ex: dourado) */
  }
  

  /* Footer */
.footer-personalizado {
    background-color: #880000;
  }

.img-fluid{
  max-width: 100px;
}

  @media (max-width: 992px) {
    .parallax-section {
      padding-left: 5%; /* diminui o padding lateral para caber no mobile */
      justify-content: center; /* centraliza o conteúdo */
      height: 60vh; /* altura menor para telas menores */
    }
  
    .imagem-parallax {
      max-width: 250px; /* reduz a largura máxima da imagem */
      padding-top: 5%; /* diminui o padding superior */
      filter: drop-shadow(0 0 5px rgba(0,0,0,0.5)); /* sombra mais leve */
    }
  
    .texto-parallax {
      max-width: 90%; /* texto ocupa quase toda a largura */
      font-size: 18px; /* diminui um pouco a fonte */
      margin-left: 0;
      text-align: center;
      margin-top: 10px;
    }
  
    .texto-parallax h2 {
      font-size: 22px;
    }
  }
  
  @media (max-width: 576px) {

    .navbar {
      position: fixed;
      background-color: #F5F4F2;
      opacity: 90%;
      padding: 0.5rem 1rem;
      margin: 0;
    }
    
    .navbar::before {
      content: "";
      display: block;
      width: 97%;
      height: 10px;
      background-color: #9C0001;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }
    
    .nav-link, i {
      font-family: "Playfair Display";
      font-size: 100%;
      padding: 0%;
      margin: 0%;
    }
    
    .navbar .nav-link i {
      margin-right: 8px;
    }
    
    #navbartop {
      margin-bottom: 0%;
      padding: 0%;
    }
    
    #navbarNav {
      margin-top: 15px;
    }

    .parallax-section {
      flex-direction: column-reverse; /* inverte a ordem: texto fica acima da imagem */
      padding-left: 0;
      height: auto; /* deixa a altura automática para crescer conforme conteúdo */
      padding-top: 20px;
      padding-bottom: 20px;
    }

    .texto-parallax {
      max-width: 90%;
      font-size: 16px;
      margin-left: 0;
      margin-top: 15px;
    }
  
    .imagem-parallax {
      max-width: 90%;
      margin: 0 auto;
     
      }
  
    .texto-parallax h2 {
      font-size: 20px;
    }

    .container-botao-contato {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 10px; /* ajuste conforme necessário */
    }  
    
    .btn-contato {
      width: 65%;
      height: 35%;
      background: linear-gradient(45deg, #d4af37, #C6AD4A, #d4af37);
      background-size: 50% 50%;
      color: white;
      font-weight: bold;
      font-family: "Playfair Display", serif;
      padding: 5px;
      border: none;
      border-radius: 40px;
      text-transform: uppercase;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: gradientMove 6s infinite ease, glow 2s infinite ease-in-out, pulse 2.5s infinite ease-in-out;
      font-size: 0.9rem;
      cursor: pointer;
      opacity: 1;
      transform: translateY(0);
      max-height: 130px;
      display: flex;
      justify-content: center;
      text-decoration: none; /* Remove underline do link */
    }

    img.img-fluid{
      align-items: center;
      margin-left: 35%;
    }
  }
  
  