
body, html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Remove o overflow horizontal */
}

/* Tela de carregamento */
#tela_carregamento {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Container do Spinner */
.loadingio-spinner-spinner-977el9wwy2v {
  width: 200px;
  height: 200px;
  display: inline-block;
  overflow: hidden;
}

/* Spinner Animation */
.ldio-4j5ay0xf86g {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0;
}

/* Elementos do Spinner com animação */
.ldio-4j5ay0xf86g div {
  position: absolute;
  left: 94px;
  top: 48px;
  width: 12px;
  height: 24px;
  border-radius: 6px / 12px;
  background: var(--cor-botao-contato);
  animation: spinnerAnimation 1s linear infinite;
  transform-origin: 6px 52px;
}

/* Definição de cada elemento para o spinner circular */
.ldio-4j5ay0xf86g div:nth-child(1) { transform: rotate(0deg); animation-delay: -0.916s; }
.ldio-4j5ay0xf86g div:nth-child(2) { transform: rotate(30deg); animation-delay: -0.833s; }
.ldio-4j5ay0xf86g div:nth-child(3) { transform: rotate(60deg); animation-delay: -0.75s; }
.ldio-4j5ay0xf86g div:nth-child(4) { transform: rotate(90deg); animation-delay: -0.666s; }
.ldio-4j5ay0xf86g div:nth-child(5) { transform: rotate(120deg); animation-delay: -0.583s; }
.ldio-4j5ay0xf86g div:nth-child(6) { transform: rotate(150deg); animation-delay: -0.5s; }
.ldio-4j5ay0xf86g div:nth-child(7) { transform: rotate(180deg); animation-delay: -0.416s; }
.ldio-4j5ay0xf86g div:nth-child(8) { transform: rotate(210deg); animation-delay: -0.333s; }
.ldio-4j5ay0xf86g div:nth-child(9) { transform: rotate(240deg); animation-delay: -0.25s; }
.ldio-4j5ay0xf86g div:nth-child(10) { transform: rotate(270deg); animation-delay: -0.166s; }
.ldio-4j5ay0xf86g div:nth-child(11) { transform: rotate(300deg); animation-delay: -0.083s; }
.ldio-4j5ay0xf86g div:nth-child(12) { transform: rotate(330deg); animation-delay: 0s; }

/* Keyframes para a animação de opacidade dos elementos */
@keyframes spinnerAnimation {
  0% { opacity: 1; }
  100% { opacity: 0; }
}


:root {

    --cor-branco:white;
    --cor-preto:black;
    --cor-primaria:grey;

   /*Fontes*/
   --fontes-1: "Montserrat", serif;
   --fontes-2: "Varela Round", serif;
   --fontes-3: "Lilita One", serif;

    /*Animação*/
    --tempo-animacao: 1s;

    /*background*/

    --background_color_1:rgba(2, 2, 2, 0.329);
    --background_color_2:rgb(13, 1, 77);
    --background_color_3:rgb(0, 0, 0);
    --background_color_4:rgb(255 114 217);
    --background_color_5:rgb(255, 221, 85);
    --background_color_6:rgb(125 85 255);
    --background_color_7:rgb(71, 71, 71);
    --background_color_8:rgb(7 3 3 / 61%);

    /*Border-Radius*/
    --border-radius_1: 15px;
    --border-radius_2: 30px 0 30px;
    --border-radius_3:20px 20px 0 20px;
    --border-radius_4:0 0 20px 20px;
    --border-radius_5:20px 0px 20px 0px;
    --border-radius_6:30px;
    --border-radius_7:150px 150px 0 0;

    /*Color*/
    --color_1:#ffff;
    --color_2:#000000;
    --color_3:#010491;
    --color_4:#ff01bb;
    --color_5:#ffcc01;

    /*text-shadow*/
    --text-shadow_1: 6px 1px 2px rgba(0,0,0,0.6);
    --text-shadow_2: 4px 1px 2px rgba(0, 0, 0, 0.6);


    /*box-shadow*/
    --box-shadow_1: 4px -2px 22px 0px rgba(255,255,255,0.81);
    --box-shadow_2: 0px 0px 16px 3px rgba(0,0,0,0.75);

}

p{
  line-height: 20px;
}
/* Animação */
  @keyframes square-animation {
    0% {
      left: 0;
      top: 0;
    }
  
    10.5% {
      left: 0;
      top: 0;
    }
  
    12.5% {
      left: 32px;
      top: 0;
    }
  
    23% {
      left: 32px;
      top: 0;
    }
  
    25% {
      left: 64px;
      top: 0;
    }
  
    35.5% {
      left: 64px;
      top: 0;
    }
  
    37.5% {
      left: 64px;
      top: 32px;
    }
  
    48% {
      left: 64px;
      top: 32px;
    }
  
    50% {
      left: 32px;
      top: 32px;
    }
  
    60.5% {
      left: 32px;
      top: 32px;
    }
  
    62.5% {
      left: 32px;
      top: 64px;
    }
  
    73% {
      left: 32px;
      top: 64px;
    }
  
    75% {
      left: 0;
      top: 64px;
    }
  
    85.5% {
      left: 0;
      top: 64px;
    }
  
    87.5% {
      left: 0;
      top: 32px;
    }
  
    98% {
      left: 0;
      top: 32px;
    }
  
    100% {
      left: 0;
      top: 0;
    }
  }
  
  .fade-in {
    animation: fadeIn 1s ease-in-out;
  }
  
  .fade-out {
    animation: fadeOut 1s ease-in-out;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
  
    to {
      opacity: 0;
    }
  }
  
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-100px);
    }
  
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideOutLeft {
    from {
      opacity: 1;
      transform: translateX(0);
    }
  
    to {
      opacity: 0;
      transform: translateX(-100px);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(100px);
    }
  
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideOutRight {
    from {
      opacity: 1;
      transform: translateX(0);
    }
  
    to {
      opacity: 0;
      transform: translateX(100px);
    }
  }
  
  @keyframes slideInTop {
    from {
      opacity: 0;
      transform: translateY(-100px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideInBottom {
    from {
      opacity: 0;
      transform: translateY(100px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animacao {
    opacity: 0;
    transition: opacity var(--tempo-animacao) ease-out, transform var(--tempo-animacao) ease-out;
  }
  
  .in-view-left,
  .in-view-right,
  .in-view-top,
  .in-view-bottom {
    animation-duration: var(--tempo-animacao);
    animation-fill-mode: forwards;
  }
  
  .out-view-left,
  .out-view-right,
  .out-view-top,
  .out-view-bottom {
    animation-duration: var(--tempo-animacao);
    animation-fill-mode: forwards;
  }
  
  .in-view-left {
    animation-name: slideInLeft;
  }
  
  .out-view-left {
    animation-name: slideOutLeft;
  }
  
  .in-view-right {
    animation-name: slideInRight;
  }
  
  .out-view-right {
    animation-name: slideOutRight;
  }
  
  .in-view-top {
    animation-name: slideInTop;
  }
  
  .in-view-bottom {
    animation-name: slideInBottom;
  }

/*Nav bar*/
.navbar {
  background-color: var(--background_color_2);
  color:var(--color_1) ;
  font-family: var(--fontes-1);
  font-weight: 400;
}


.navbar-nav .nav-link {
    color: var(--cor-da-letra-nav-bar);
    font-family: var(--fontes-1);
    font-size: 15px;
    font-weight: 700;
    margin-right: 10px;
    transition: color 0.3s ease-in-out, border-bottom 0.3s ease-in-out; 
}


.navbar-nav .nav-link:hover {
    color: var(--cor-roxo);
}


.nav-link.active {
    color: var(--cor-roxo) !important;
    border-bottom: 2px solid var(--cor-roxo); 
}

.nav-logo{
  max-height: 150px;
  border-radius: 10px;
}


.nav-item.contato .nav-link {
    font-weight: 700;
    padding: 8px 20px;
    border-radius: var(--border-radius_1);
    cursor: pointer;
    position: relative;
    background-color: var(--background_color_4);
}


.btn {
  font-weight: 600 !important;
  border-radius: var(--border-radius_4);
  box-shadow: var(--text-shadow_1) !important;
  text-transform: uppercase !important;
  padding-left: 2.1rem;
  padding-right: 2.1rem;
  transition: all .2s linear !important;
}

.btn-primary {
  background: var(--background_color_2) !important;
  border-radius: var(--border-radius_4);
  color: var(--color_1) !important;
}

.btn-secudary {
  color: var(--color_1) !important;
}

.missao-visao-valores{
  background-color: var(--missao-valores);
  
 
}

.missao-visao-valores h4{
  font-family: var(--fontes-3);
  font-weight: 700;
  letter-spacing: 2px;
}

.missao-visao-valores p{
  background-color: var(--missao-valores);
  font-family: var(--fontes-1);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 2px;
}



/*Banner
#inicio,
#section_cadastro,
#section_agradecimento {
    height: auto;
    min-height: 35rem;
}

#inicio,
#idealizadoras {
    position: relative;
    height: 100%;
}

#inicio .row {
  position: relative;
  z-index: 2;
}*/


/*CARROUSSEL BANNER*/
.carousel{
  margin-bottom: 0;
}

.carousel-caption {
  top: 8rem;
}

/*.carousel-caption a {
  position: absolute;
  top:15rem;
  left: 25rem;
}*/
  
.carousel-item{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 700px;

}

.slide-1{
  background-image:  url(../imagens/carroussel/background_1.jpg);
}

.slide-2{
  background-image: url(../imagens/carroussel/background_2.jpg);
}

.slide-3{
  background-image: url(../imagens/carroussel/background_3.jpg);
}

.carousel-control-prev p{
  background-color: var(--cor-primaria);
}
.carousel-control-prev{
  background: none;
  border: none;
}

.carousel-control-next{
  background: none;
  border: none;
}

.carousel-control-prev-icon, carousel-control-next-icon{
  color: var(--background_1);
  font-size: 2rem;
  font-weight: 900;
}

.carousel-caption h1{
  font-family: var(--fontes-3);
  font-size: 4vw;
  text-shadow: var(--text-shadow_2);
}

.carousel-caption p{
  font-family: var(--fontes-1);
  font-size: 25px;
  line-height: 2rem;
  text-shadow: var(--text-shadow_2);
}

.banner-principal h1{
  color: var(--color_1);
  font-family: var(--fontes-1);
  text-shadow: var(--text-shadow_1);
}


.icon_card {
    height: 6rem;
}

.icon_card .fundo,
.icon_card .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    color: var(--color_1);
    transform: translate3d(-50%, -50%, 0);
    transition: all .2s ease-in-out;
}

.icon_card .fundo {
    width: 6rem;
    height: 6rem;
    opacity: .2;
}

.icon_card .icon {
    width: 4rem;
    height: 4rem;
}

li:hover .icon_card .fundo {
    opacity: 1;
}

li:hover .icon_card .icon {
    color: var(--color_lestras_2);
}

#img_s1{
    min-height: 20rem;
}
/*Serviços*/

.servicos_titulo h1{
  font-size: 4rem;
  font-family: var(--fontes-3);
  font-weight: 500;
}

.page-section h2{
  color: var(--color_3);
  font-family: var(--fontes-2);
  font-weight: bold;
  font-size: 3.5rem;
  
}
.page-section p{
  color: var(--color_2);
  font-family: var(--fontes-1);
  font-weight: 300;
  font-size: 20px;
  line-height: 25px;
  
}

.linha-vetical{
  border: none;
  border-left: 10px solid;
  border-radius: var(--border-radius_3);
  color: var(--color_4);
  height: 65px;
  position: relative;
  bottom: 15px;
  width: 15px;
}

/*Sobre Nós*/

.bg_parallax_1{
  background-image: linear-gradient(rgb(0 0 0 / 84%), rgb(136 30 30 / 50%)), url(../imagens/fundo/background-1.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.bg_parallax_1 h1{
  color: var(--color_1);
  font-size: 4rem;
  font-family: var(--fontes-3);
  font-weight: 500;
  text-shadow: var(--text-shadow_1);
}

.bg_parallax_1 h2{
  color: var(--color_1);
  font-family: var(--fontes-2);
  font-weight: bold;
  font-size: 3.5rem;
  text-shadow: var(--text-shadow_1);
}

.bg_parallax_1 p{
  color: var(--color_1);
  font-family: var(--fontes-1);
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
}

.bord-img{
  border-radius: var(--border-radius_1);
}

.bord-img-galeria{
  border-radius: var(--bordas-arredondadas2)!important;
  box-shadow: 0px 2px 9px var(--box-shadow-nav-bar);
}

.card-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: var(--bg-fundo-texto); 
  color: var(--textos-preto);
  text-align: center;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.card-servicos:hover .card-content {
  transform: translateY(0);
}


.imagem-servico {
  width: 100%;
  height: 200px; 
  object-fit: cover;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: 10px;
}

.section-mapa h1{
  color: var(--color_2);
  font-family: var(--fontes3);
  font-weight: 900;
  font-size: 3rem !important;
}


.galeria h1{
  color: var(--color_2);
  font-family: var(--fontes3);
  font-weight: 900;
  font-size: 3rem !important;
}


.fundo-sevico{
    background-color: var(--fundo-servicos);
}

/*contador*/
.counter-area {
  background-color: var(--background_color_5);
  position: relative;
  padding: 1rem;
  color: var(--color_2);
}
.counter-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.counter-area .container {
  position: relative;
  z-index: 2;
}
.single-counter {
  text-align: center;
  padding: 30px 20px;
}
.counter-number {
  font-size: 3rem;
  font-family: var(--fontes-1);
  font-weight: bold;
}
.counter-heading {
  font-family: var(--fontes-1);
  font-weight: bold;
  margin-top: 10px;
  text-transform: uppercase;
}


/*Produtos*/
.produtos{
  background-color: var(--background_color_6);
}

.produtos h1{
  color: var(--color_1);
  font-size: 4rem;
  font-family: var(--fontes-3);
  font-weight: 500;
}

.card{
  border: none;
  background-color: var(--background_color_7);
  color: var(--color_1);
}

.card h2{
  color: var(--color_1);
  font-size: 1.5rem;
  font-family: var(--fontes-3);
}

.card p{
  color: var(--color_1);
  font-family: var(--fontes-1);
}
.card-img-top{
  border-top-left-radius: var(--border-radius_4);
  border-top-right-radius: var(--border-radius_4);
}

/*parallax*/
.fundo-parallax{
  background-image: url(../imagens/fundo/background-2.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding: 1rem;
}

.fundo-texto {
  background-color: rgba(113, 9, 211, 0.301);
  backdrop-filter: blur(5px);
  border-radius: var(--border-radius_5);
  box-shadow: var(--box-shadow_1);
  position: relative;
  overflow: hidden;
  
}

.fundo-texto::before,
.fundo-texto::after {
  content: "";
  position: absolute;
  border: 2px solid var(--background_color_2); 
  box-sizing: border-box;
}

.fundo-texto::before {
  top: 10px;
  left: 10px;
  width: calc(35% - 20px); 
  height: calc(35% - 20px); 
  border-width: 4px 0 0 4px; 
  border-radius: var(--border-radius_5);
}

.fundo-texto::after {
  bottom: 10px;
  right: 10px; 
  width: calc(35% - 20px); 
  height: calc(35% - 20px); 
  border-width: 0 4px 4px 0; 
  border-radius: var(--border-radius_5);
}

.fundo-parallax h1{
  color: var(--color_1);
  font-family: var(--fontes-2);
  font-size: 3rem;
}

.fundo-parallax p{
  color: var(--color_1);
  font-family: var(--fontes-2);
  font-size: 25px;
  line-height: 30px;
}


.fundo-contatos {
  background-size: cover;
  background-position: center;
  background-image: url('../imagens/fundo/background-3.jpg'); 
  border-radius:var(--border-radius_6); 
  height: auto;
  position: relative;
}

.fundo-contatos h5 {
  color: var(--color_1);
  font-family: var(--fontes-3);
  font-size: 25px;
  font-weight: 500;
}

.fundo-contatos p{
  color: var(--color_1);
  font-family: var(--fontes-2);
  font-size: 20px;
  font-weight: 500;
}

.fundo-contatos a{
  font-size: 30px;
  font-weight: 500;
}
.fundo {
  position: relative;
  z-index: 1;
}

.fundo-contatos::before {
  background-color: var(--background_color_8);
  backdrop-filter: blur(5px);
  border-radius:var(--border-radius_6);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
 
}
/*Form*/

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
form input {
  height: 40px;
  outline: none;
  border: 1px solid ;
  padding: 10px;
  font-size: 15px;
  border-radius: var(--border-radius_6);
}
form input[type="button"] {
  background-color: var(--form-bg)!important;
  color: var(--textos-branco);
  font-size: 17px;
}
form select{
  height: 40px;
  outline: none;
  border: 1px solid ;
  padding: 10px;
  font-size: 15px;
  border-radius: var(--border-radius_6);
}
form span a {
  text-decoration: none;
  color: var(--form-bg);
  font-weight: 500;
}

.button-enviar{
  background-color: var( --background_color_2) !important;
  border: 1px solid ;
  color: var(--color_1);
  height: 40px;
  outline: none;
  padding: 10px;
  font-size: 15px;
  border-radius: var(--border-radius_1);
}

.textos-contato h1{
  color: var(--color_2);
  font-family: var(--fontes-2);
  font-size: 3rem;
  font-weight: 500;
}

.textos-contato h2{
  color: var(--color_3);
  font-family: var(--fontes-2);
  font-size: 3rem;
  font-weight: 500;
}

.textos-contato p{
  color: var(--color_2);
  font-family: var(--fontes-1);
  font-size: 25px;
  line-height: 35px;
}


.linha {
  width: 100px;
  height: 5px;
  border-radius: var(--border-radius);
  background-color: var(--bg-linha-parallax);
  margin: 15px auto;
}


/*Depoimentos*/

.fundo-depoimentos h1{
  color: var(--color_2);
  font-family: var(--fontes-3);
  font-size: 3rem;
}

.card_depoimento {
  list-style: none;
  padding-bottom: 2rem !important;
  margin-bottom: 4rem !important;
  background-color: var(--fundo-servicos);
  color: var(--textos-branco);
}

.card_depoimento .container_perfil {
  list-style: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, 70%, 0);
}

.card_depoimento i{
  color: #fceb05 !important;
}


.glider {
  display: flex;
  gap: 1rem; /* Espaçamento entre os itens */
}

.glider-prev,
.glider-next {

  color: #0c45e0;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.dots {
  text-align: center;
  margin-top: 1rem;
}

.dots button {
  background: #ddd;
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}

.dots .active {
  background: #000000;
}


.abre_fqa i {
  transition: .2s ease-in-out;
}

.abre_fqa[aria-expanded="true"] i{
  transform: rotate(180deg);
}

.border_top {
  border-top: 1px solid var(--btn_border);
}

.texto-titulo-depoimentos{
  color: var(--textos-branco);
  font-family: "Karla", sans-serif;
  font-weight: 900;
  font-size: 2.5rem !important;
}
.texto_depoimento{
  color: var(--textos-branco);
  font-family: var(--fontes-1);
}

.nome-titulo-depoimentos{
  color: var(--textos-branco);
  font-family:var(--fontes-2);
  font-weight: 900;
}

.bg-dark{
  background-color: var(--background_color_3) !important;
  box-shadow: var(--box-shadow_2);
  color: var(--color_1);
  border-radius: var(--border-radius_7);
}

.footer h2{
  color: var(--hover-bg-color);
  font-family: var(--fontes-3);
  font-weight: 500;
  text-align: center;
}

.footer li{
  color: var(--color_1);
  font-family: var(--fontes-2);
  font-size: 20px;

}

.logo-footer{
  max-width: 350px;
}

.contatos-footer{
    list-style: none;
}

.redes-sociais a{
    font-size: 30px !important;
}

.whatsapp_flutuante {
  position: fixed;
  right: 20px;
  bottom: 20px;
}
.whatsapp_msg {
  width: 0;
  transition: width 3s;
  padding: 7px 0 0 7px;
}
.rotating-image {
  animation: rotateImage 0.6s infinite;
}

.box-cook.hide{
  display: none !important;
}


.box-cook{
  z-index: 999;
  position: fixed;
  left: 10px;
  bottom: 10px;
  background-color: var(--cor-branco);
  padding: 0.5rem;
  color: var(--cor-black);
  box-shadow: 0px 0px 5px 0px var(--cor-primaria);
  font-size: 14px;
  border-radius: 8px;
}


.box-cook a{
text-decoration: none;
}



/*marcas*/
.section-marcar{
  max-height: 300px;
  max-width: 300px;
  object-fit: contain;
}
.ajustes{
  position: relative;
  top: 4rem;
}
/*btn-wpp*/
.btn-success{
  border-radius: var(--border-radius_1);
  font-family: var(--fontes-1);
  padding: 0.5rem 1.5rem;
  width: auto;
}


/* Política de Privacidade */
#modal_lgpd {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-transparente);
  color: var(--textos-preto) !important;
  opacity: 0;
  visibility: hidden; 
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999; 
}

#modal_lgpd.open {
  opacity: 1;
  visibility: visible;
}

.container_modal_lgpd {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%; 
  max-width: 600px; 
  max-height: 90vh;
  background: var(--bg-color) !important;
  border-radius: var(--border-radius_1);
  overflow: hidden; 
  transform: translate(-50%, -50%); 
  transition: transform 0.3s ease, opacity 0.3s ease; 
  opacity: 0; 
}

#modal_lgpd.open .container_modal_lgpd {
  opacity: 1; 
}

.texto_modal_lgpd { 
  padding: 1.5rem;
  overflow-y: auto;
  max-height: 70vh; 
}

#modal_lgpd .titulo_lgpd {
  top: 0;
  background: linear-gradient(360deg, var(--bg-color) 0%, var(--bg-color) 10%) !important;
}




/* MEDIAS -------------------------------------------------------- */
@media (max-width: 3000px){

}
@media (max-width: 2200px){

}
@media (max-width: 1700px){

}
@media (max-width: 1450px){
 
}
@media (max-width: 1320px){
 
}
@media (max-width: 1250px){
   

}
@media (max-width: 1200px){
   
}
@media (max-width: 1150px){

}
@media (max-width: 1080px){
 
}
@media (max-width: 1024px){

}
@media (max-width: 991px){
    .redes-sociais {
        flex-direction: column; 
    }

    .linha-pontilhada-vetical{
      color: var(--textos-branco);
      height: 1px;
      width: 100%;
    }

    .whatsapp_msg {
      display: none; 
  }

  .whatsapp_flutuante .whatsapp_msg {
      display: none;
  }

  .whatsapp_flutuante {
      background: none; 
      box-shadow: none; 
      border: none; 
  }

  
  .whatsapp_bt img {
      width: 65px; 
  }
    
}
@media (max-width: 910px){
  
}
@media (max-width: 768px){
    .glider-prev, .glider-next {
        padding: 5px;
        font-size: 16px;
    }

    .titulo-banner-1{
      font-size: 2rem;
    }
    .texto-titulo-depoimentos{
      font-size: 2rem !important;
    }

    .bg-transparente-parallax{
      background-color: var(--bg-banner-texto) !important;
      border-radius: 30px 0 30px;
      backdrop-filter: blur(9px);
      box-shadow: 0px 0px 67px -18px var(--bg-transparente);
      -webkit-box-shadow: 0px 0px 67px -18px var(--bg-transparente);
      -moz-box-shadow: 0px 0px 67px -18px var(--bg-transparente);
      color: var(--textos-preto);
    }
    .texto-titulo-marcas{
      font-size: 2rem !important;
    }

    
    #popup_lgpd {
      max-width: 35rem;
      padding: 1.5rem;
      text-align: left;
    }
  
    #popup_lgpd .container_lgpd {
      border-radius: var(--LGPD_popup_radius);
      box-shadow:
        6.7px 6.7px 5.3px rgba(0, 0, 0, 0.02),
        22.3px 22.3px 17.9px rgba(0, 0, 0, 0.03),
        100px 100px 80px rgba(0, 0, 0, 0.05);
    }
    
}
@media (max-width: 529px){
  
    
}