@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lemon&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*//////////////////////////corpo////////////////////////////*/
body {
 font-family: 'Montserrat', sans-serif;
  background-color: #f4f4f4; 
  padding-top: 50px;
  font-size: 1rem; 
}
/*/////////////////////////Abertura//////////////////////////*/
section.video{
  border-radius: 10%;
 
}

.abertura video{
  width: 99%;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/*/////////////////////////////Fim da abertura////////////////////*/

.fixed{
position: sticky;
margin-top:-4.5%;


/*/////////////////////////Cabeçalho////////////////////////////*/
}
.header-container {
  background-color: #f4f4f4;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  margin-top: 1.3%;

}


.logo {
  width: 250px;
  height: auto;
  align-items: center;
  display: flex;
  justify-content: center;
}

 .condicoes{
  
  align-items: end;
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
  margin-top: -1%;

}
 .condicoesv, .condicoest{
     
   margin-right: 30px;
   border: none;
   border-radius: 5px;
   font-family: var(--font-dm-sans);
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 20px;
    letter-spacing: 0px;
    transition: 0.2s;
}
.condicoesf{
  font-family: var(--font-dm-sans);
    font-style: normal;
    border:none;
    font-weight: 700;
    font-size: 30px;
    line-height: 20px;
    letter-spacing: 0px;
    margin-right: 5px;
    transition: 0.2s;
 
}
.condicoesv:hover, .condicoest:hover, .condicoesf:hover{
  color: #4575db;

}

/*///////////////////////////Carrosel mostruário////////////////////*/
section.carroselmostruário{
margin-top: 5%;
width: 100%;
height: auto;
padding: 0;
overflow: hidden;

}

.slides{
 width: 400%;
 height: auto;
 display: flex;
 

}

.slides input{
display: none;
}

.slidebox{
  width: 25%;
  height: auto;
  position: relative;
  text-align: center;
  transition: 1s;
}

.slidebox img{
  width: 49%;
border-radius: 5%;
box-shadow: 0 4px 8px rgb(65, 65, 65);

}
.navmanual, .navauto{
  position: absolute;
  width: 100%;
  margin-top: 28%;
  display: flex;
  justify-content: center;
}

.navmanual .btnmanual, .navauto div{
border: 2px solid rgba(253, 253, 253, 0.055);
padding: 10px;
border-radius: 50%;
cursor: pointer;
transition: 0.5s;
}
.navmanual .btnmanual:not(:last-child), .navauto div:not(:last-child){
  margin-right: 5px;
}

.navmanual .btnmanual:hover{
  background-color: hsl(0, 0%, 53%);
}

#rad1:checked ~ .navauto .autobtn1{
  background-color: #424242;
}
#rad2:checked ~ .navauto .autobtn2{
  background-color: #424242;
}
#rad3:checked ~ .navauto .autobtn3{
  background-color: #424242;
}

#rad1:checked ~ .first{
  margin-left: 0%;
}

#rad2:checked ~ .first{
  margin-left: -25%;
}

#rad3:checked ~ .first{
  margin-left: -50%;
}
/*//////////////////////////// Estoque ///////////////////////////*/
.container {
  display: flex;
  margin-top: 35px;
  margin-left: 10%;
  margin-right: 10%;
  justify-content: center;
  flex-wrap: wrap;
  align-content: flex-start;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgb(65, 65, 65);
  
}
a {
  text-decoration: none; 
  color: inherit;
}


.product-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.952);
  
  
  overflow: hidden;
  width: 300px;
  margin: 15px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
 
}


.product-card:hover {
  transform: translateY(-10px);
}


.product-img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #ddd;
}


.product-title {
   font-family: 'Lemon', cursive;
  font-size: 1.5rem; 
  font-weight: 600;
  margin: 15px 0;
  color: #333;
}

.Ano {
  font-size: 1.5rem; 
  font-weight: 600;
  margin: 15px 0;
  color: #333;
}


.product-price {
  font-size: 1.25rem; 
  color: #e74c3c;
  margin-bottom: 20px;
}

.vendido {
  background-color: #9b9b9b;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px;
  margin: 20px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}
/*/////////////////////Botão de Contato/////////////////////////////*/
.contact-button {
  background-color: #2ecc71;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem; 
  cursor: pointer;
  transition: background-color 0.3s ease;
}
footer {
  background-color: #f8f9fa; 
    color: #333; 
    text-align: center; 
    font-size: 0.75rem; 
    padding: 5px 10px; 
    margin-top: 10px; 
    border-top: 1px solid #ddd; 
}

.contact-button:hover {
  background-color: #27ae60;
}


.contact-button a {
  color: #fff;
  text-decoration: none;
}

/*//////////////////////////////Responsividade//////////////////////////*/
@media (max-width: 1024px) {
  .container {
    margin-left: 5%;
    margin-right: 5%;
  }
 .slidebox img{
   margin-left: 5%;
    margin-right: 5%;
 }
}

@media (max-width: 768px) {
  .product-card {
    width: 90%;
  }
  .condicoes{
    margin-top: 4%;
  }
  .container {
    flex-direction: column;
    align-items: center;
  }
  .slidebox img {
    width: 90%;
  }
  .navmanual, .navauto{
  margin-top: 53%;
  
  }
}