
.producto-destacado {
    display: flex;
    background-color: black;
    color: white;
}

main h1 {
  text-decoration: underline;
}

.producto-destacado .titulo {
    font-size: 45px;
    margin-bottom: 5%;
}

.producto-destacado img {
    width: 100%;
}

.producto-destacado .texto {
    margin:10%;
    font-size:30px;
    width: 60%;
    margin-right: 0;
    margin-bottom: 4%;
}

.producto-destacado .imagen {
    margin:10%;
    width: 40%;
    margin-left: 5%;
    margin-right: 15%;
    margin-bottom: 4%;
}

.producto-destacado .boton1 {
    border-radius: 41px;
    width: 50%;
    height: 12%;
    font-size: 20px;
    margin-top: 5%;
    background-color: #ffa41c;
}

.producto-destacado .boton2 {
    border-radius: 41px;
    width: 50%;
    height: 12%;
    font-size: 20px;
    margin-top: 5%;
}

.producto-destacado .boton1:hover {
    background-color: #e28b08 !important;
}

.producto-destacado .boton2:hover {

  background-color: antiquewhite !important;
}




.tipos {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tipos > div {
    width: 100%;
    max-width: 300px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    padding: 24px 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.tipos > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.seccion-tipos h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0a2b4b;
}

.seccion-tipos p {
    padding-bottom: 5%;
}

.seccion-tipos img {
    max-height: 150px;
    width: auto;
    margin-bottom: 16px;
    object-fit: contain;
}

/* Responsive */
@media (min-width: 600px) {
    .tipos > div {
        width: 48%;
    }
}

@media (min-width: 992px) {
    .tipos > div {
        width: 30%;
    }
}




h3 {
  margin-top: 2%;
}

.seccion-catalogo h2{
    padding:30px;
    text-align: center;
    font-size: 30px;
    margin-top: 5%;
}

.seccion-catalogo h3{
    font-size: 15px;
}

.seccion-catalogo p {

}




.grid-catalogo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
  
  .grid-catalogo .doble {
    grid-column: span 1;
    border: 1px solid #ccc;
    margin: 5%;
  }
  
  .grid-catalogo .doble img {
      width: 70%;
  }
  
  .grid-catalogo .individual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3    0px;
    margin: 5%;
      margin-left: 0;
  }
  
  .grid-catalogo .individual img {
      width: 70%;
  }
  
  .grid-catalogo .item {
    border: 1px solid #ccc;
    display: flex;
      flex-direction: column;
      justify-content: space-around;
  }
  
  .grid-catalogo .item a {
    display: block;
    text-decoration: none;
    color: black;
    text-align: center;
  }
  
  .grid-catalogo img {
    max-width: 100%;
    height: auto;
  }
  
  .grid-catalogo h3 {
    margin: 10px 0;
  }
  
  
  

.seccion-productos {
  display: flex;
  justify-content: space-evenly;
  box-sizing: none;
  width: 100%;
  margin-top: 5%;
  margin-bottom: 5%;
}

.seccion-productos > div{
  width: 25%;
  padding: 4%;
  text-align: center;
  border: 1px solid #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.seccion-productos img {
  width: 100%;
  height: auto;
}

.seccion-productos button {
  padding:4%;
  margin-top: 2%;
}

.seccion-productos button{
  background-color: rgba(255, 166, 0, 0.753);
  font-size: 15px;
  border: 2px solid #000;
}

.seccion-productos button:hover{
  background-color: orange;
 
}




@media screen and (max-width: 700px) {

    .producto-destacado {
        flex-direction: column-reverse;
        padding-top: 10%;
      }
    
      .producto-destacado .texto {
        width: 90%;
      }
    
      .producto-destacado img {
        width: 100%;
      }
    
      .seccion-productos > div {
        width: 100%;
      }
    
      .grid-catalogo {
        display:block;
      }
    
      .tipos > div {
        width: 100%;
      }
    
      .seccion-productos {
        display: block;
        margin-top: 5%;
      }
    
      .producto-page {
        flex-direction: column;
      }
      .producto-page img {
        width: 100%;
      }
      .producto-page div {
        width: 100%;
      }
      .producto-destacado .imagen {
        margin: 0;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-top: 5%;
    }


    footer {
      padding-bottom: 5%;
    }

    .producto-destacado .boton1 {
     height: 40px;
     width: 90%;

    }

    .producto-destacado .boton2 {
      height: 40px;
      width: 90%;
      margin-bottom: 5%;
    }

  }

    .producto-destacado .boton1:hover {
    cursor: pointer;
    background-color: rgba(255, 166, 0, 0.459);
  }

  .producto-destacado .boton2:hover { 
    cursor: pointer;
    background-color: rgba(255, 166, 0, 0.459);
  }


  main li {
    margin-top: 5px;
  }

   main ul {
    margin:2%
  }