@import url("https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Frank+Ruhl+Libre:wght@300..900&display=swap");

* {
  box-sizing: border-box;
}

body {
  background-color: rgb(253, 253, 253);
  font-family: "EB Garamond", serif;
  margin: 0;
  padding: 0;
}

/* Estilização da navbar */

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  background-image: linear-gradient(
    180deg,
    #450d32,
    #450d32,
    #450d32,
    rgb(0, 0, 0)
  );
  color: #fff;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Fim estilização da navbar */

/* Inicio carrousel */

.carousel-item {
  position: relative;
}
.carousel-item img {
  width: 100%;
  height: auto; /* Garante que a imagem mantenha a proporção */
}
.frase-sobreposta {
  position: absolute;
  color: #450d32;
  top: 40%; /* Centraliza verticalmente no contêiner do carousel */
  left: 16%;
  width: 100%;
  height: 13%;
  transform: translate(-15%, 0%);
  font-size: 39px;
  pointer-events: none; /* Garante que os eventos de clique passem pelas setas */
  z-index: 10; /* Garante que o texto esteja sobre as imagens */
  /* background: rgba(
          0,
          0,
          0,
          0.4
        );  */
  /* Fundo semi-transparente para melhorar a legibilidade */
}

/* Estilização das setas personalizadas */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #450d32; /* Fundo das setas */
  border-radius: 50%;
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
  font-size: 24px;
  color: #fff; /* Cor das setas */
}
.carimg {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* --Final Carrousel -- */

/* --Inicio Nossos Serviços -- */
.servicos h2 {
  font-size: 50px;
}
.servicos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  width: 100%;
  height: 100px;
  /* border: 1px solid blue; */
  color: white;
  background-image: linear-gradient(
    180deg,
    #450d32,
    #450d32,
    #450d32,
    rgb(0, 0, 0)
  );
}

/* --Inicio Cards -- */

.card {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px black;
}

.card-img-top {
  margin-top: 15px;
  width: 100%; /* ajustar largura da imagem para 100% da largura do card */
  height: auto; /* manter proporção da imagem */
  max-width: 100px; /* define o tamanho máximo da imagem */
}

.card-body {
  padding: 15px;
}

.card-text {
  max-height: 60px; /* Ajuste conforme necessário */
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  text-decoration: none;
}
.card-text span {
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}
.card-text p {
  font-size: 15px;
  text-decoration: none;
}

.card:hover .card-text {
  max-height: 100px; /* Ajuste conforme necessário */
}

.card:hover {
  box-shadow: 0 6px 12px #450d32;
  transform: scale(1.02);
}

.card-body p {
  margin: 0;
  color: #a91717;
}
/* --Final Cards -- */

/* -----Inicio Sobre Nós------ */

.sobre-nos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  width: 100%;
  height: 100px;
  /* border: 1px solid blue; */
  color: white;
  background-image: linear-gradient(
    180deg,
    #450d32,
    #450d32,
    #450d32,
    rgb(0, 0, 0)
  );
}
.sobre-nos h2 {
  font-size: 50px;
}

.img-principal {
  display: flex;
  flex-wrap: wrap; /* Permite que os itens se reorganizem em telas menores  */
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 1200px; /* Largura máxima do container  */
  padding: 20px;
}

.left-side,
.right-side {
  flex: 2; /* Divide o espaço igualmente entre as duas partes */
  min-width: 300px; /* Largura mínima para cada lado */
}

.left-side img {
  width: 100%; /* A imagem ocupará 100% da largura disponível */
  height: auto; /* Mantém a proporção da imagem */
  display: block;
  border-radius: 15px;
}

.right-side {
  padding: 30px;
  font-size: 20px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column; /* Alinha os itens verticalmente em telas menores */
  }

  .left-side,
  .right-side {
    max-width: 100%; /* Cada lado ocupará 100% da largura do container */
  }
}

/* -----Final Sobre Nós------ */

/* -----Inicio Perguntas Frequentes------ */

.per-freq h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  height: 100px;
  background-image: linear-gradient(
    180deg,
    #450d32,
    #450d32,
    #450d32,
    rgb(0, 0, 0)
  );
  color: white;
}
/* -----Final Perguntas Frequentes------ */

/* Inicio Accordeon */

/* Alterar a cor do cabeçalho do acordeão */
.accordion-button {
  display: flex;
  align-items: center;
  background-color: white; /* Cor de fundo */
  font-size: 25px;
  color: #450d32; /* Cor do texto */
  border-color: #450d32; /* Cor da borda */
}

.accordion-button:not(.collapsed) {
  background-color: white; /* Cor de fundo quando expandido 
    color: #450d32; /* Cor do texto quando expandido */
  /* border-color: #0056b3; Cor da borda quando expandido */
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem #450d32; /* Cor do foco */
}

/* Alterar a cor do corpo do acordeão */
.accordion-body p {
  background-color: white; /* Cor de fundo do corpo */
  color: #450d32;
}
/* Fim Accordeon */

/* Inicio Footer */
.content {
  height: 1500px; /* Apenas para criar uma rolagem na página */
}

footer {
  display: flex;
  align-items: center;
  height: 400px;
  background-image: linear-gradient(180deg, black, #450d32, #450d32, black);
  text-align: center;
}

/* final Footer */

/*---------------------Inicio Redes Sociais----------------------- */

.middle {
  position: relative;
  /* top: 220%; */
  /* transform: translateY(-1%); */
  /* width: 100%; */
  text-align: center;
}

.btns {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #f1f1f1;
  margin: 10px;
  border-radius: 30%;
  box-shadow: 0 5px 15px -5px #00000070;
  color: #450d32;
  overflow: hidden;
  position: relative;
}

.btns i {
  line-height: 47px;
  font-size: 26px;
  transition: 0.2s linear;
}

.btns:hover i {
  transform: scale(1.3);
  color: #f1f1f1;
}

.btns::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: #450d32;
  transform: rotate(45deg);
  left: -110%;
  top: 80%;
}

.btns:hover::before {
  animation: aaa 0.7s 1;
  top: -10%;
  left: -10%;
}

@keyframes aaa {
  0% {
    left: -110%;
    top: 90%;
  }

  50% {
    left: 10%;
    top: -30%;
  }

  100% {
    top: -10%;
    left: -10%;
  }
}
/*-Fim Redes Sociais---- */

/* --Inicio Botão Whatsapp-- */

a {
  text-decoration: none;
}
.floating_btn {
  position: fixed;
  bottom: 25px;
  right: 1px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}
.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}
.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}
/* Final Botão Whatsapp-*/

.animate__animated.animate__rollIn {
  --animate-duration: 3s;
}
