/*
Theme Name: Café Colonial - Grupo Della Torre
Theme URI: https://exemplo.com
Description: Tema filho personalizado baseado no Hello Elementor
Author: Diego - RoDi Solutions
Author URI: https://instagram.com/seuperfil
Template: hello-elementor
Version: 1.0

#e6e4e1
#d1beb6 - fundo header

#3e0c14 - color menu fonte

#68232b 

#aa6667 - - color hover

marketing2025dellatorre@
*/



/*------------------MEU HEADER------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,600;1,700&family=Satisfy&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.grid {
    display: grid;
}

#topo {
    width: 100%;
    padding: 1rem 0 1rem;
    display: grid;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: 20% 60% 20%;
    background-color: #F0DFDD;
}


.inicial-topo {
  margin: 0;
  padding: 0;
  justify-self: center;
  align-self: center;
}

#topo a img {
  margin: 0 0 0 20px;
  padding: 0;
  height: 10vh;
  max-width: 100%;

}

#bt-mobile {
    margin: 0;
    padding: 0;
    display: none;
    position: relative;
    z-index: 4;
    border: 0 none;
    width: 50px;
    height: 50px;
    background-color: transparent;

}
.dir-topo {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-menu ul li a {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 28px;
  font-style: bold;
  margin: 0 20px;
  color: #3e0c14;
  transition-duration:0.4s;

}

.sociais {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  
}

#btn-reservar {
  margin: 0;
  padding: 0.5rem 2rem;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 18px;
  font-style: bold;
  color: #F0DFDD;
  background-color: #68232b ;
  border-radius: 10px;
  border-style: solid;
  border-color: transparent;
  transition-duration:0.4s;
}

#btn-reservar:hover {
  color: #aa6667;
  background-color: transparent;
  border-style: solid;
  border-color: #aa6667 ;
}

.sociais li a svg {
    margin: 0 10px;
    color: #3e0c14;
    transition-duration:0.4s;
}

.header-menu ul li, .sociais li {
    display: inline-block;
    list-style: none;
    transition-duration:0.4s;
}


.header-menu ul li a:hover {
    color: #aa6667 ;
}

.sociais li a svg:hover {
    color: #aa6667 ;
}

/*----------------------MEU BODY-------------------*/
#container-inicial {   
  margin: 0;
  padding: 0;

  width: 100%;    
  height: 100vh;    
  background-image: url("../../uploads/images/fd-inicial.png");
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  
}

.ct-inicial {
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-rows: 70% 30%;
  justify-content: center;
  row-gap: 5rem;
}

.inicial-info {
   margin: 0;
   padding: 0;

   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;

}

.info-inicial {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 7rem;
  font-style: bold;
  text-shadow: #000 2px 3px 2px;
  color: #ffffff;
}

.subinfo-inicial {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 3rem;
  font-style: italic;
  text-shadow: #000 2px 3px 2px;
  color: #ffffff;
}

#btn-inicial {
  margin: 0;
  padding: 0;
  width: 25%;
  height: 75%;
  justify-self: center;

  display: flex;
  justify-content: center;
  align-items: center;
  
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.7rem;
  color: #F0DFDD;
  background-color: #68232b ;
  border-radius: 5rem;
  border-style: none;
  transition-duration:0.4s;
}

#btn-inicial:hover {
  color: #68232b ;
  background-color: #F0DFDD;
  transition-duration:0.4s;
}



/*--------------CARROSSEL-----------*/
#container-carrossel {    
  position: relative;    
  width: 100%;    
  height: 100vh;    
  overflow: hidden;
  background: transparent;
  
}

.slides {
    position: relative; /* Importante para que os slides absolutos se aninhem aqui */
    width: 100%;
    height: 100%;
  
}

.slide {   
    position: absolute; /* Permite que os slides sejam empilhados um sobre o outro */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* Por padrão, todos os slides são invisíveis */
    transition: opacity 1s ease-in-out; /* AQUI ESTÁ A MÁGICA DO FADE! */
    pointer-events: none; /* Impede interações com slides invisíveis */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;

}

.slide.active {
    opacity: 1; /* O slide com a classe 'active' se torna visível */
    pointer-events: auto; /* Permite interações com o slide ativo */
}

.slide img {    
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
    display: block; /* Remove espaços extras abaixo da imagem */
    max-width: 100%;
}

#prev {    
  position: absolute;    
  top: 50%;    
  transform: translateY(-50%);    
  background-color: rgba(255, 255, 255, 0.5);    
  border: none; 
  border-radius: 2rem;  
  padding: 8px 16px;    
  cursor: pointer;    
  z-index: 990;
  left: 10px;
  color: #F0DFDD;
}

#prev:hover {
  background-color: rgba(255, 255, 255, 0.7);
  color: rgba(255, 255, 255, 0.151);
}

#next {    
  position: absolute;    
  top: 50%;    
  transform: translateY(-50%);    
  background-color: rgba(255, 255, 255, 0.5);    
  border: none;  
  border-radius: 2rem;  
  padding: 8px 16px;   
  cursor: pointer;    
  z-index: 990;
  right: 10px;
  color: #F0DFDD;
}

#next:hover {
  background-color: rgba(255, 255, 255, 0.7);
  color: rgba(255, 255, 255, 0.151);
}

/*-----------------COMECE AQUI----------------*/
#container-comeceaqui {
  margin: 0;
  padding: 90px 0px 90px 0px;
  background-image: url("../../uploads/images/fundo.png");
  background-size: cover;
  background-repeat: no-repeat;

}

.title-bemvindo {
  margin: 0;
  padding: 10px 0;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-size: 8rem;
  font-style: normal;
  color: #6e1b1bc9;
  justify-self: center;
}

.subtitle-bemvindo {
  margin: 0;
  padding: 20px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 22px;
  font-style: normal;
  color: #503a3a;
  justify-self: center;
}

.title-localizacao {
  margin: 0;
  padding: 70px 0 5px 0;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-size: 46px;
  font-style: normal;
  color: #6e1b1bc9;
  justify-self: center;
}

.subtitle-localizacao h2 {
  margin: 0;
  padding: 5px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 22px;
  font-style: normal;
  color: #503a3a;
  justify-self: center;
}

.title-horario {
  margin: 0;
  padding: 70px 0 5px 0;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-size: 46px;
  font-style: normal;
  color: #6e1b1bc9;
  justify-self: center;
  text-align: center;
}

.subtitle-horario {
  margin: 0;
  padding: 5px 0 70px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 22px;
  font-style: normal;
  color: #503a3a;
  justify-self: center;
  text-align: center;
}

.title-valores {
  margin: 0;
  padding: 5px 0;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-size: 52px;
  font-style: normal;
  color: #6e1b1bc9;
  justify-self: center;
}

.grid-valores {
  margin: 0;
  padding: 0;
  width: 50%;
  justify-self: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  row-gap: 3%;
  column-gap: 1%;
  
}

.grid-valores h2 {
  margin: 0;
  padding: 10px 0;
  justify-self: center;
  align-self: center;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-size: 32px;
  font-style: normal;
  color: #8D4F4F;  
}

.grid-valores h2 p{
  margin: 0;
  padding: 0;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
  justify-self: center;
  align-self: center;
  color: #503a3a;  
}

/*---------------INFORMAÇÕES--------------*/
#container-info {
  margin: 0;
  padding: 90px 0;
  background-color: #F0DFDD;
  max-height: max-content;
  
}


.destaque-info {
  margin: 0;
  padding: 90px 0 0 0;
  display: flex;
  flex-direction: row;
  width: auto;
  background-color: #F0DFDD;
  
}

.info-esquerda {
  margin: 0;
  padding: 0 4rem;
  max-width: 50%;
  background-color: #f3eceb;

  display: flex;
  text-align: center;
  align-items: center;
}

.title-info {
  margin: 0;
  padding: 0;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-size: 5rem;
  font-style: normal;
  color: #6e1b1bc9;
  text-align: center;
}

.subtitle-info {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  font-style: normal;
  color: #8D4F4F;
  

}


.info-direita {
  margin: 0;
  padding: 0;
  max-width: 50%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fundo-info-direita {
  margin: 0;
  padding: 0;
  object-fit: cover;  
  max-width: 100%;
  height: auto;
  box-shadow: 7px 7px 10px #dbcbc9bd;
  max-width: 100%;
}

/*-----------------DEPOIMENTOS-----------*/
#container-depoimento {
  margin: 0;
  padding: 40px 20px 80px 20px;
  background-color: #F0DFDD;
  max-width: 100%;
  max-height: max-content;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title-depoimento {
  margin: 0;
  padding: 0;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-size: 4rem;
  font-style: normal;
  color: #6e1b1bc9;
  padding-bottom: 6rem;
}


.grid-depoimento {
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;

  max-width: 980px;

}


.depoimento {
  margin: 0;
  padding: 0;
  box-shadow: 8px 8px 10px #dbcbc9bd;
  padding: 0 10px;
  display: flex;
  align-items: center;
  background-color: #f7f0ef;
  border-radius: 3px;

}

.autor-imagem {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 20px;
  box-shadow: 3px 3px 10px #dbcbc9bd;
}

.texto-depoimento {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-style: italic;
  margin-top: 10px;
}

.autor-nome {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  font-weight: 700;

}

.avaliacao-depoimento .star {
  color: gold;
  font-size: 2rem;
}




/*-----------------FOOTER----------------*/

.custom-footer {
  margin: 0;
  padding: 30px 0;
  background-color: #c0918ff1;
}

.footer-content {
  margin: 0;
  padding: 1% 4%;
  width: 100%;
  display: grid;
    grid-template-columns: 30% 40% 30%;
    justify-content: space-between;
    align-items: center;
}

#logo-footer {
  width: 11rem;
  height: 5.5rem;
  justify-self: center;
}

.footer-centro {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  row-gap: 2rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
}

.footer-menu ul li a {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-style: normal;
  margin: 0 20px;
  color: #F0DFDD;
  transition-duration:0.4s;
}

.footer-menu ul li {
  display: inline;
  list-style: none;
}

.footer-menu ul li a:hover {
  text-decoration: underline;
}

.footer-dev {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #F0DFDD;

}

.footer-dev h2{
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-style: normal;
  color: #F0DFDD;
}

.footer-logo-centro{
  margin: 0;
  padding: 0;
  width: 2rem;
  height: 1rem;
}

.footer-info{
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  row-gap: 0.5rem;

}

.footer-icos {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1rem;
}

.footer-icos a{
  margin: 0;
  padding: 0;
  width: auto;
}
.footer-icos a svg{
  margin: 0;
  color: #F0DFDD;
  text-decoration: none;
  transition: color 0.3s ease;
  width: 1.5rem;
  height: 1.5rem;
}

.footer-icos a svg:hover {
  color: #6e1b1bc9;
}

.footer-info .localizacao {
  margin: 0;
  padding: 0;
  align-self: center;
  justify-self: center;

}

.footer-info .localizacao h2{
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-style: normal;
  color: #F0DFDD;
}

.footer-info .localizacao h2:hover {
  text-decoration: underline;
}

/*--------------------RESPONSIVO HEADER----------------*/

@media screen  and (max-width:1260px) {


   #topo {
    grid-template-columns: 1fr 1fr;
    width: 100%;
   } 

   #topo a img {
    margin-left: 10px;
   }
   #bt-mobile {
       display: inline;
       justify-self: right;
       margin-right: 3rem;
       z-index: 1005;
    }

  .ico-open {
       justify-self: center;
       align-self: center;
       color: #68232b;
  }

  .ico-close {
       display: none;
       justify-self: center;
       align-self: center;
       color: #68232b;

    }
  


   #topo .dir-topo {
    position: fixed;
    grid-template-columns: 1fr;
    align-content: center;
    z-index: 1002;
    height: 60%;
    background-color: transparent;
    right: -101%;
    width: 50%;
    top: 0;
    transition-duration:0.3s;
    padding: 140px 20px 0px 20px;
    box-sizing: border-box;

   }

   #topo .sociais {
    position: fixed;
    grid-template-columns: 1fr;
    z-index: 1001;
    height: 100%;
    background-color: #d1beb6;
    right: -101%;
    width: 50%;
    top: 0;
    transition-duration:0.3s;
    padding: 140px 20px 0px 20px;
    box-sizing: border-box;
    padding-bottom: 15%;
   }

   .dir-topo {
    margin-right: 0rem;
    display: flex;
    justify-content: center;
    align-items: center;
   }

  #topo.mn-aberto .ico-close {
    display: inline;
    margin-right: 4rem;
           position: fixed;
    
   }
  #topo.mn-aberto .ico-open {
    display: none;
  }

   #topo.mn-aberto .dir-topo {
    right: 0;
   }

   #topo.mn-aberto .sociais {
    right: 0;
   }
   .header-menu ul li {
        display: flex;
        list-style: none;
    }
   .header-menu ul li a {
        margin-bottom: 20px;
    }
   
    .sociais {
      margin: 0;
      background-color: transparent;
          display: flex;
          flex-direction: column;
    justify-content: end;
    align-items: center;
    gap: 3%;

    }


}

@media screen  and (max-width:768px) {

.ct-inicial {
    row-gap: 3rem;
}

.info-inicial {
  font-size: 4rem;
}

.subinfo-inicial {
  font-size: 2rem;
}

#btn-inicial {
  font-size: 1rem;
}



.title-bemvindo {
  margin: 0;
  padding: 10px 0;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-size: 6.6rem;
  font-style: normal;
  color: #6e1b1bc9;
  justify-self: center;
}

.subtitle-bemvindo {
  margin: 0;
  padding: 20px 0 120px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  font-style: normal;
  color: #503a3a;
  justify-self: center;
}

.title-localizacao {
  margin: 0;
  padding: 70px 0 5px 0;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-size: 40px;
  font-style: normal;
  color: #6e1b1bc9;
  justify-self: center;
}

.subtitle-localizacao h2 {
  margin: 0;
  padding: 5px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-style: normal;
  color: #503a3a;
  justify-self: center;
}

.title-horario {
  margin: 0;
  padding: 70px 0 5px 0;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-size: 40px;
  font-style: normal;
  color: #6e1b1bc9;
  justify-self: center;
  text-align: center;
}

.subtitle-horario {
  margin: 0;
  padding: 5px 0 70px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 18px;
  font-style: normal;
  color: #503a3a;
  justify-self: center;
  text-align: center;
}

.title-valores {
  margin: 0;
  padding: 5px 0;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-size: 44px;
  font-style: normal;
  color: #6e1b1bc9;
  justify-self: center;
}

.grid-valores {
  margin: 0;
  padding: 0;
  width: 50%;
  justify-self: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  row-gap: 3%;
  column-gap: 1%;
  
}

.grid-valores h2 {
  margin: 0;
  padding: 10px 0;
  justify-self: center;
  align-self: center;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-size: 24px;
  font-style: normal;
  color: #8D4F4F;  
}

.grid-valores h2 p{
  margin: 0;
  padding: 0;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-size: 12px;
  font-style: normal;
  justify-self: center;
  align-self: center;
  color: #503a3a;  
}


#container-info .title-info {
  padding: 0 1rem;
  font-size: 3rem;
}

#container-info .subtitle-info {
  font-size: 1.3rem;
  text-align: center;
}

#container-info .destaque-info {
  flex-direction: column;
  align-items:  center;
}


#container-info .destaque-info .info-esquerda {
  max-width: 100%;
  height: 40vh;
}

#container-info .destaque-info .info-direita {
  max-width: 100%;
}


#container-depoimento .grid-depoimento {
  display: flex;
  flex-wrap: wrap;
  max-width: 650px;
}

.custom-footer {
  margin: 0;
  padding: 0;
  background-color: #c0918ff1;
}

.footer-content {
  margin: 0;
  padding: 1rem;
  width: 100%;
  display: grid;
    grid-template-columns: none;
    grid-template-rows: 60% 30%;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
  row-gap: 1rem;
}

.footer-centro {
  display: none;
}

}

@media screen  and (max-width:425px) {


#topo a img {
  margin-left: 20%;
  width: 50%;
  height: auto;
}

#topo .dir-topo {
    position: fixed;
    grid-template-columns: 1fr;
    align-content: center;
    z-index: 1002;
    height: 50%;
    background-color: transparent;
    right: -101%;
    width: 70%;
    top: 0;
    transition-duration:0.3s;
    padding: 140px 20px 0px 20px;
    box-sizing: border-box;

   }

   #topo .sociais {
    position: fixed;
    grid-template-columns: 1fr;
    z-index: 1001;
    height: 100%;
    background-color: #d1beb6;
    right: -101%;
    width: 70%;
    top: 0;
    transition-duration:0.3s;
    padding: 140px 20px 0px 20px;
    box-sizing: border-box;
    padding-bottom: 15%;
   }

.ico-open {
  width: 30px;
  height: 30px;
}

.ico-close {
  width: 30px;
  height: 30px;
}

.ct-inicial {
    row-gap: 1rem;
}

.info-inicial {
  font-size: 2rem;
}

.subinfo-inicial {
  font-size: 0.8rem;
}

#btn-inicial {
  font-size: 0.55rem;
}

#container-carrossel {
  height: 70%;
}

.title-bemvindo {
  margin: 0;
  padding: 10px 0;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-size: 2.6rem;
  font-style: normal;
  color: #6e1b1bc9;
  justify-self: center;
}

.subtitle-bemvindo {
  margin: 0;
  padding: 5px 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-style: normal;
  color: #503a3a;
  justify-self: center;
  text-align: center;
}

.title-localizacao {
  margin: 0;
  padding: 70px 0 5px 0;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-size: 22px;
  font-style: normal;
  color: #6e1b1bc9;
  justify-self: center;
}

.subtitle-localizacao h2 {
  margin: 0;
  padding: 5px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 11px;
  font-style: normal;
  color: #503a3a;
  justify-self: center;
}

.title-horario {
  margin: 0;
  padding: 70px 0 5px 0;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-size: 22px;
  font-style: normal;
  color: #6e1b1bc9;
  justify-self: center;
  text-align: center;
}

.subtitle-horario {
  margin: 0;
  padding: 5px 5px 70px 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 11px;
  font-style: normal;
  color: #503a3a;
  justify-self: center;
  text-align: center;
}

.title-valores {
  margin: 0;
  padding: 5px 0;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-size: 22px;
  font-style: normal;
  color: #6e1b1bc9;
  justify-self: center;
}

.grid-valores {
  margin: 0;
  padding: 0;
  width: 50%;
  justify-self: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  row-gap: 3%;
  column-gap: 1%;
  
}

.grid-valores h2 {
  margin: 0;
  padding: 10px 0;
  justify-self: center;
  align-self: center;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-size: 14px;
  font-style: normal;
  color: #8D4F4F;  
}

.grid-valores h2 p{
  margin: 0;
  padding: 0;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-size: 10px;
  font-style: normal;
  justify-self: center;
  align-self: center;
  color: #503a3a;  
}

#container-info {
  padding: 40px 0;
}

#container-info .destaque-info {
  flex-direction: column;
  align-items:  center;
  padding: 1rem 0;
}

#container-info .title-info {
  padding: 0 1rem;
  max-width: 100%;
  font-size: 1.3rem;
  justify-content: center;
}  
 
#container-info .destaque-info .info-esquerda {
  max-width: 100%;
  height: 20vh;
  padding: 0 2rem;
}

#container-info .subtitle-info {
  font-size: 0.6rem;
  text-align: center;
  
}  

#container-depoimento {
  padding: 0 2vh 5vh 2vh;
  
}  

#container-depoimento .title-depoimento {
  font-size: 2rem;
}

#container-depoimento .grid-depoimento {
  display: flex;
  flex-wrap: wrap;
  max-width: 295px;
  justify-content: center;

}

.footer-info .localizacao h2{
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 10px;
  font-style: normal;
  color: #F0DFDD;
}

}

