/*TAGS GERAIS*/
* {
    margin: 0;
    padding: 0;
   
}


html, body {
  overflow-x: hidden;
}


body {
    background-color: rgb(223, 222, 222);

}

/*CABEÇALHO*/
header {
    background-color:#ff0000;
    position: relative;
    transition: all 0.6s ease;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    padding: 10px 20px 0px 20px;
}

.loja{
    display: flex;
    align-items: center;

}

.logo {
    margin-top: 20px;
    margin-left: 150px;
    width: 175px;
    display: flex;
}

.tudo{
    display: flex;
}



 .dark-mode{
    display: none;
    position: absolute;
    margin-top: 40px;
    right: 100px;
 }

 .checkbox{
    opacity: 0;
    position: absolute;
 }

 .label{
    background-color: #ffffff;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:4px;
    position: relative;
    height: 6px;
    width: 20px;
    transform: scale(1.5);
 }

 .label .ball{
    background-color: #2a2a2a;
    border-radius: 50%;
    position: absolute;
    top: auto;
    left: 1px;
    height: 12px;
    width: 12px;
    transform: translateX(0px);
    transition: tranform 0.2s linear;
 }

 .checkbox:checked + .label .ball {
    transform: translateX(13px);

 }
 
 #icone {
    color: rgb(0, 0, 0);
    font-size: 9px;
 }

 #sol {
    color: rgb(255, 0, 0);
    font-size: 9px;
 }
 
/* Barra de pesquisa */

.barra {
    margin: 30px 0px 15px 145px;
    padding: 0 20px;
    background-color: white;
    width: 450px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
}

#searchbar {
    width: 400px;
    height: 30px;
    padding: 0 15px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    background-color: rgb(255, 255, 255);
    box-sizing: border-box;
    margin: 0; 
}   

.barra i{
    color: rgb(0, 0, 0);
    font-size: 20px;
    display: flex;
    justify-content: end;
    position: relative;
    margin-left: 30px;
}

#searchbar:focus {
    outline: none;
    border: none; 
}

.container-tags {
    display: flex;
    justify-content: center;
    text-align: center;
   
}

.container-tags p{
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 900;
}

.container-tags a {
    text-decoration: none;
    margin-left: 8px;
    margin-right: 8px;
    color: white;
}

.container-tags a:hover {
    display: inline-block;
    transform: scale(1.2);
}

/*formulario*/

.abrir-menu {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: end;
    margin-left: 70%;
    margin-top: -125px;
    margin-right: 160px;
    

  }

  .abrir-menu .oi{
    width: 100px;
    margin-right: -10px;
    
  }


  .abrir-menu h2{
    margin: 0;
    font-size: 15px;
    color: #ffffff;
    margin-right: 10px;
  }

  .abrir-menu i {
    font-size: 30px;
    color: #000;
  }
  
.abrir-menu {
    padding: 15px;
    cursor: pointer;
}

.abrir-menu i {
    font-size: 30px;
    color: #ffffff;
}

.menu {
    position: absolute;
    top:100%;
    right: 0;
    width: 200px;
    border-radius: 10px;
    max-height: 0;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transition: max-height 0.5s ease;
    z-index: 999;
    padding: 0 20px;
    margin-top: 3px;
}
.menu.abrir-menu {
    max-height: 100vh;
    padding-top: 20px;
    padding-bottom: 20px;
}

.menu .btn-fechar {
    display: block;
    margin-left: 160px;
    margin-bottom: -10px;
    cursor: pointer;
    
}
.menu .btn-fechar i {
    font-size: 24px;
    color: red;
}

.menu form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.menu input[type="submit"] {
    background-color: green;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
}
.menu input[type="button"] {
    background-color: #888;
    color: white;
}
.menu input[type="button"]:hover {
    background-color: #666;
}

span {
    color: rgb(255, 0, 0);
    font-weight: bold;
    font-size: 25px;
}

  .menu form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .menu input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  .menu input[type="submit"],
  .menu input[type="button"] {
    background-color: red;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
  }
  .menu input[type="button"] {
    background-color: #888;
  }
  .menu input[type="button"]:hover {
    background-color: #666;
  }
  
span{
    color: rgb(255, 0, 0);
    font-weight: bold;
    font-size: 25px;
}
/* MENU MOBILE */
.btn-abrir-menu i {
  color: rgb(255, 250, 250);
  font-size: 30px;
  cursor: pointer;
  margin-right: 40px;
  margin-left: 320px;
}

.menu-mobile {
  background-color: rgb(255, 0, 0);
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30000;
  width: 0%;
  overflow: hidden;
  transition: 0.5s;
}

.overlay-menu {
  background-color: rgba(0, 0, 0, 0.445);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20000;
  display: none;
}

.menu-mobile.abrir {
  width: 70%;
}

.menu-mobile .btn-fechar i {
  color: rgb(255, 255, 255);
  font-size: 40px;
}

.menu-mobile .btn-fechar {
  padding: 20px 5%;
  cursor: pointer;
}

.menu-mobile nav ul {
  text-align: right;
}

.menu-mobile nav ul li a {
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 300;
  padding: 20px 8%;
  display: block;
  text-decoration: none;
  font-weight: bold;
}

.menu-mobile nav ul li a:hover {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 254, 254);
}


/*carrosel*/
.carrossel{
  width: 100%;
  height: 40%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider {
  width: 100%;
  height: 60%;
  position: relative;
  overflow: hidden;
}

.slides {
  width: 500%;
  height: 100%;
  display: flex;
  transition: margin-left 1s;
}

.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    border: none;
    padding: 5px 20px;
    background-color: rgba(255, 255, 255, 0.368);
    cursor: pointer;
    z-index: 10;
    border-radius: 50px;
}

.custom-arrow:hover{
  background-color: #ffffffb6;
}

.carousel-control-prev.custom-arrow {
    left: 10px;
    margin-top: -340px;
}

.carousel-control-next.custom-arrow {
    right: 10px;
    margin-top: -340px;
}


.slides input {
  display: none;
}

.slide {
  width: 20%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 40%;

}

.manual-navigation {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.manual-btn {
  border: 2px solid #fff;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.5s;
  margin: 0 10px;
}

.manual-btn:hover {
  background-color: #fff;
}

.navigation-auto {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.navigation-auto div {
  border: 2px solid rgb(255, 255, 255);
  padding: 5px;
  border-radius: 10px;
  margin: 0 10px;
  cursor: pointer;
}


#radio1:checked ~ .firts { margin-left: 0; }
#radio2:checked ~ .firts { margin-left: -20%; }
#radio3:checked ~ .firts { margin-left: -40%; }
#radio4:checked ~ .firts { margin-left: -60%; }
#radio5:checked ~ .firts { margin-left: -80%; }


#radio1:checked ~ .navigation-auto .auto-btn1,
#radio2:checked ~ .navigation-auto .auto-btn2,
#radio3:checked ~ .navigation-auto .auto-btn3,
#radio4:checked ~ .navigation-auto .auto-btn4,
#radio5:checked ~ .navigation-auto .auto-btn5 {
  background-color: #fff;
}

/*logos*/
h2{
  text-align: center;
  margin-top: 20px;
  font-size: 45px;
  color: #000000;
}

.marca {
  margin: -5px;
  padding-top: 15px;
  background-color: red;
  height: 75px;
  color: white;
}

.marcas {
  display: flex;
  justify-content: center;  
  align-items: center;      
  gap: 50px;
  margin-left: 200px;
  margin-right: 200px;
  text-align: center;
  flex-wrap: wrap;          
  padding: 50px;
  margin-bottom: 100px;
}

.marcas div {
  width: 150px;
  height: 150px;
  background-color: rgb(255, 255, 255);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.477);
}

.bioland img{
  max-width: 150px;
}

.ortho img{
  max-width: 200px;
  
}

.hidro img{
  max-width: 130px;
  
}

.mercur img{
  max-width: 130px;
  
}

.vitamedical img{
  max-width: 120px;
  
}

.della img{
  margin-left: 35px;
  max-width: 260px;
  
}

.supermed img{
  max-width: 130px;
  
}

.descarpack img{
  max-width: 180px;
  
}

.medix img{
  max-width: 130px;
  
}

.sr img{
  max-width: 100px;
  
}


.venosan img{
  max-width: 150px;
}



.marcas #logo:hover{
transform: scale(1.1);
box-shadow: 5px 5px 10px rgb(255, 0, 0);
}

/*local*/

.location {
  background-color: red;
  color: white;
  height: 75px;
  padding-top: 20px;

}

.localização{
  display: flex;
  justify-content: center;
  margin-left: 100px;
  margin-right: 100px;
  margin-top: 100px;
  margin-bottom: 200px;
  gap: 60px;
}
.localização h3 {
  text-align: center;
  color: white;
  padding: 0px 0px 20px 0px;
  font-size: 25px;
}

video{
margin-top: -36px;
}

.local {
  margin: 50px 0px 50px 0px ;
  background-color: red;
      box-shadow: 0 0 40px 10px rgba(0, 0, 0, 0.477);
  padding: 30px;
  border-radius: 50px;

}


.local2 {
  margin: 50px 0px 50px 0px ;
  background-color: red;
      box-shadow: 0 0 40px 10px rgba(0, 0, 0, 0.477);
  padding: 30px;
  border-radius: 50px;
  
}



/*rodape*/
footer{
    padding: 40px 4%;
    background-color: #ff0000;
    box-shadow: 0 0 40px 10px rgba(255, 0, 0, 0.477);
    margin-top: 50px;
}


.logo-footer{
  width: 200px;
  margin-bottom: 20px;
}

.borda{
    border-top: 2px solid rgb(255, 255, 255);
    margin-bottom: 20px;
}

footer .btn-social{
display: flex;
gap: 100px;
}

footer a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    display: flex;
    margin-top: 10px;
}

footer p{
  font-size: 20px;
  margin-left: 5px;
}

footer h3{
color: #ffffff;
text-align: center;
font-size: 20px;
}

footer  i{
  color: #ffffff;
  font-size: 20px;
}


footer .direitos{
    color: rgb(255, 255, 255);
    text-align: center;
    margin-top: 70px;
    font-size: 20px;

}

/*Orçamento*/
.simulett{
  margin-top: 100px;
}


.simulador h2{
  color: white; 
  height: 75px;
   text-align: center; 
   background-color: red; 
   font-size: 40px; 
   font-weight: bold; 
   padding-top: 20px;
}

.fsuport {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   width: 70%;
   background-color: #ffffff;
   margin-left: 15%;
   margin-top: 40px;
   border-radius: 30px;
}

.imagem{
   border-top-right-radius: 30px;
   border-bottom-right-radius: 30px;
   background-color: red;
}
.imagem img{
   margin-top: 40px;
   width: 500px;
}

.form_box {
   display: flex;
   flex-direction: column; 
   border-radius: 45px;
   width: 500px;
   margin-left: 5;
}

.form_box h1 {
   padding: 24px;
   color: rgb(255, 0, 0);
   justify-content: end;
}

.form_box form {
   display: flex;
   align-items: start;
   flex-direction: column;
   flex-wrap: wrap;
   padding: 32px;
}

.form_box input{
   width:300px ;
   height: 45px;
   padding-left: 20px;
   margin-bottom: 20px ;
   border-radius: 15px;
   border: solid;
   border-color: red;
}

.form_box ::placeholder{
   color: red;
}


.form_box button {
   width: 180px;
   height: 48px;
   border-radius: 10px;
   background-color: rgb(255, 0, 0);
   color: white;
   margin-bottom: 50px;
   font-weight: bold;
   border: none;
   cursor: pointer;
   margin-left: 32px;
}

.form_box label {
   margin-left: 10px;
   margin-bottom: 5px;
   font-weight: bold;
   color: red;
}






.Pesquisar{
   background-color:rgb(255, 255, 255);
   padding: 20px;
}


.clique{
   display: flex;
   align-items: center;
   justify-content: flex-start;
}

.clique button{
   justify-content: flex-start;
}


.checkbox-wrapper {
display: flex;
align-items: flex-start;
gap: 10px;
cursor: pointer;
margin: 10px 0;
}

.checkbox-wrapper input[type="checkbox"] {
display: none;
}

.custom-checkbox {
width: 17px;
height: 17px;
background-color: #ededed;
border: 1px solid rgb(201, 201, 201);
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.2s;
margin-top: 4px;
}

.custom-checkbox::after {
content: "";
width: 4px;
height: 8px;
border: solid rgb(255, 255, 255);
border-width: 0 2px 2px 0;
transform: rotate(45deg);
opacity: 0;
transition: opacity 0.2s;
}

.checkbox-wrapper input[type="checkbox"]:checked + .custom-checkbox {
background-color: rgb(172, 0, 0);
border-color: rgb(172, 132, 0);
}




.checkbox-wrapper input[type="checkbox"]:checked + .custom-checkbox::after {
opacity: 1;
}

.checkbox-wrapper a{
color: rgb(172, 132, 0);
text-decoration: none;
}

body.dark .simulador h2{
color: white;
}

body.dark .simulador .pc{
color: white;
}

body.dark .simulador a{
color: rgb(161, 161, 161);
}

body.dark form input{
background-color: #b1b1b1;
}

body.dark form ::placeholder{
color: rgb(0, 0, 0);
}

body.dark form button{
color: rgb(255, 255, 255);
background-color: black;
}


@media screen and (max-width: 900px){
.simulador h2{
  font-size: 30px;
}

.simulador .pc{
  font-size: 20px;
}

form button{
  padding: 20px;
  font-size: 15px;
  margin-left: 4rem;
}

   .simulett {
  margin-top: 118px;
  margin-bottom: 50px;
  width: 100%;
  height: 250px;
  padding: 0;
  background: url(simular.jpg) no-repeat bottom center scroll;
  background-position: 30% 45%;
  background-size: cover;
  z-index: 1;
  overflow: hidden;
}

}

/*responsividade*/
@media screen and (min-width: 1000px){
    .btn-abrir-menu{
       display: none;
    }     
}

@media screen and (max-width: 1000px){
    .container-tags{
       display: none;
    }  
    


    header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

    .abrir-menu{
        display: none;
    }

    .logo{
        display: flex;
        justify-content: start;
        margin-left: 5px;
        margin-top: 10px;
        width: 100px;
    }

    .barra {
        margin: 10px 0 0 20px;
        width: 130px;
        height: 30px;
    }

    #searchbar {
        width: 130px;
        height: 30px;
        margin-left: -15px;
        font-size: 10px;
    }   

    .barra i{
        font-size: 10px;
        margin-left: 15px;
    }

    .dark-mode{
        display: block;
        position: absolute;
        top: -7px;
        margin-right: -30px;
       
    }

    .marcas {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr; 
      margin-left: 140px;
      

      
    }

    .marcas div {
    width: 80px;
    height: 80px;
    }

    .marca{
      padding-top: 28px;
      font-size: 31px;
    }

    .bioland img{
      max-width: 80px;
    }
    
    .ortho img{
      max-width: 130px;
      
    }
    
    .hidro img{
      max-width: 80px;
      
    }
    
    .mercur img{
      max-width: 80px;
      
    }
    
    .vitamedical img{
      max-width: 70px;
      
    }
    
    .della img{
      margin-left: 30px;
      max-width: 185px;
      
    }
    
    .supermed img{
      max-width: 70px;
      
    }
    
    .descarpack img{
      max-width: 100px;
      
    }
    
    .medix img{
      max-width: 80px;
      
    }
    
    .sr img{
      max-width: 60px;
      
    }
    
    .mova img{
      max-width: 100px;
      
    }
    
    .venosan img{
      max-width: 87px;
    }

    /*local*/

    .localização {
      margin: 50px 20px;
      flex-direction: column;
      align-items: center;
    }
  
    .location {
      height: auto;
      padding: 20px 10px;
    }

    .mapa {
     width: 350px;
    border-radius: 10px;
    }

    .video {
      width: 350px;
     border-radius: 10px;
    }
  
    .local,
    .local2 {
      width: 100%;
      padding: 20px;
      border-radius: 30px;
    }
  
    .localização h3 {
      font-size: 25px;
    }

    .custom-arrow {
    top: 50%;
    font-size: 20px;
    padding: 5px 15px;
}

    .carousel-control-prev.custom-arrow {
    left: 10px;
    margin-top: -80px;
}

.carousel-control-next.custom-arrow {
    right: 10px;
    margin-top: -80px;
}

footer .btn-social{
display: flex;
justify-content: start;
flex-direction: column;
gap: 10px;
}
/*suporte*/

.fsuport{
  display: none;
}  

.fsuport {
   display: flex;
   flex-direction: column-reverse;
    width: 80%;
    background-color: #ffffff;
    margin-left: 10%;
    margin-top: 40px;
    border-radius: 15px;
}

.imagem{
    background-color: red;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;

}
.imagem img{
    margin-top: 20px;
    width: 90%;
    margin-left: 5%;
    border-radius: 0px;
}
.form_box {
  display: flex;
  flex-direction: column; 
  border-radius: 45px;
  width: 500px;
  margin-left: 5;
}

.form_box h1 {
  padding: 24px;
  color: rgb(255, 0, 0);
  justify-content: end;
}

.form_box form {
  display: flex;
  align-items: start;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 32px;
}

.form_box input{
  width:180px ;
  height: 45px;
  padding-left: 20px;
  margin-bottom: 20px ;
  border-radius: 15px;
  border: solid;
  border-color: red;
}

.form_box ::placeholder{
  color: red;
}

.checkbox-wrapper p {
  width: 250px;
  margin-left: -5px;
}

.custom-checkbox input {
  margin-left: -20px;
}

.fsuport button{
padding-bottom: 20px;
}


}