body {
    margin: 0;
    padding-top: 70px;
  }
  
  .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' */
  }

  .container-card {
    display: flex;
    background-color: #f5f5f5; /* Fundo cinza claro */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Sombra */
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  
  .texto {
    background-color: #ddd; /* cinza claro */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 20px;
    flex: 0 1 45%; /* ocupa até 45% do container, com flex-grow 0, shrink 1 */
  }

  .texto h1{
    font-family:"Playfair Display";
    font-size: 25px;
    color: #333;
  }

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

  .container-botao-contato {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* ajuste conforme necessário */
  }  
  
  .btn-contato {
    width:45%;
    height: 20%;
    background: linear-gradient(45deg, #d4af37, #C6AD4A, #d4af37);
    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 */
  }
  
  .imagem-direita {
    display: flex;
    justify-content: flex-end;
    flex: 1 1 50%; /* ocupa o restante do espaço */
  }
  
  .imagem-direita img {
    width: 600px;
    max-width: 100%;
    height: auto;
  }

  .faixa-cinza {
    background-color: #f0f0f0; /* Cor de fundo cinza claro */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    font-family:"Playfair Display";
  }

  .texto-localizacao {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza verticalmente */
    height: 100%;             /* Ocupa toda a altura da coluna */
    text-align: center;         /* Garante alinhamento do texto à esquerda */
  }
  
  .texto-localizacao p{
    font-size: 18px;
    font-family:"Lato";
    text-align: center;         /* Garante alinhamento do texto à esquerda */
  }

  .texto-localizacao h3{
    font-size: 30px;
    font-family:"Playfair Display";
    text-align: center;         /* Garante alinhamento do texto à esquerda */
  }

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

  .img-fluid{
    max-width: 100px;
  }
  
  /* animação */
@keyframes surgir {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* responsividade para telas pequenas */
@media (max-width: 600px) {
  .container-card {
    flex-direction: column;
    gap: 20px;
  }
  
  .imagem-direita img {
    width: 80%; /* ou ajuste conforme preferir */
  }

  .texto p {
    max-width: 100%;
  }

  .container-botao-contato {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* ajuste conforme necessário */
  }  
  
  .btn-contato {
    width:75%;
    height: 20%;
    background: linear-gradient(45deg, #d4af37, #C6AD4A, #d4af37);
    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: 70px;
    display: flex;
    justify-content: center;
    text-decoration: none; /* Remove underline do link */
  }

  .img-fluid {
    max-width: 40%;
  }

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