
* {
  font-family: verdana;
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;  
    background: none;     
}

.navbar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #3c3c3c;
}

.navbar p {
  text-align:center;
    }
    
.navbar li {
  float: left;
}

.navbar li a {
  display: flex;            
  align-items: center;      
  gap: 8px;                 
  color: white;
  text-decoration: none;
  padding: 14px 16px;
}

.navbar li a:hover {
  background-color: #1F2226;
}

.active {
  background-color: #D9184B;
}

.producto-contenedor {
    width: 100%;
    max-width: 1100px;    
    margin: 50px auto;
    display: flex;
    align-items: center;   
    gap: 40px;
    padding: 40px 40px;
    background: #f1f1f1;
    border-radius: 15px;
}

.producto-miniaturas {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.producto-miniaturas img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s;
}

.producto-miniaturas img:hover {
    transform: scale(1.1);
}

.producto-imagen img {
    width: 420px;  
    border-radius: 10px;
    filter: drop-shadow(0 0 6px #3C3C3C);
    transition: transform .3s;
}

.producto-imagen img:hover {
    transform: scale(1.08);
}

.producto-info {
    max-width: 350px;
}

.producto-categoria {
    color: #737373;
    font-size: 15px;
    margin-bottom: 5px;
}

.producto-titulo {
    color: #333;
    font-size: 25px;
    margin: 10px 0 8px;
}

.producto-precio {
    font-size: 22px;
    font-weight: 600;
    display: flex;
    gap: 10px;
}

.precio-anterior {
    color: #9e9e9e;
    text-decoration: line-through;
}

.precio-oferta {
    color: #d01930; 
}


.producto-boton {
    background-color: #D9184B;
    padding: 12px 15px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
    transition: 0.3s;
}

.producto-boton:hover {
    background-color: #1F2226;
    transform: scale(1.05);
}

.producto-detalles h4 {
    margin: 20px 0 8px;
    color: #3C3C3C;
    font-size: 15px;
}

.producto-opciones {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.opcion {
    border: 2px solid #D9184B;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    background: white;
    transition: 0.3s;
    cursor: pointer;
}

.opcion:hover {
    background-color: #D9184B;
    color: white;
    transform: scale(1.1);
}

.caracteristicas-contenedor {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px 25px;
    background-color: #1F2226;
    border-radius: 15px;
    box-shadow: 0 5px 15px #D9184B;
}

.caracteristicas-contenedor h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 20px;
}

.caracteristica-item {
    margin-bottom: 15px;
    position: relative;
    padding-left: 22px;
}

.caracteristica-item::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 22px;
    color: #D9184B;
}

.caracteristica-item p {
    margin: 0;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
}


.catalogo {
  max-width: 1000px;
  margin: 50px auto;
  padding: 15px;
}

.categoria {
  margin-bottom: 90px;
}

.categoria h2 {
  font-size: 25px;
  color: #3C3C3C;
  margin: 20px;
}

.espacio {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.producto {
  flex: 0 0 235px;
  background-color: #D9184B;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
}

.producto:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 12px #919191;
}

.producto img {
  width: 100%;
  object-fit: cover;
}

.producto p {
  margin: 0;
  padding: 10px;
  background-color:#e4e4e4;
  font-size: 15px;
  color: #747474;
}


.boton-contacto {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #E2E2E2;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.boton-contacto img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.boton-contacto:hover {
    transform: scale(1.2);
    background-color: #a0a0a0;
}


footer {
  background-color: #3C3C3C;
  padding: 25px 0;
  width: 100%;
  margin: 0; 
}

.footer-apartado {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 50px;
}

.footer-izquierdo {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-izquierdo p {
  margin: 0;
  color: white;
  font-size: 15px;
}

.footer-derecho {
  display: flex;
  gap: 15px;
}

.footer-derecho a {
  background-color: #D9184B;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease, background-color 0.5s ease;
}

.footer-derecho a:hover {
  background-color: #1F2226;
  transform: scale(1.5);
}

.footer-derecho img {
  width: 60%;  
  height: 60%;
  object-fit: contain; 
  display: block;
}

@media (max-width: 768px) {

  .header {
    flex-direction: column;
    gap: 15px;
  }

  .navbar {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .navbar li {
    float: none;
    width: 100%;
  }

  .navbar li a {
    justify-content: center;   
    padding: 12px;
  }

   
    .producto-contenedor {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 15px;
        gap: 25px;
    }

    
    .producto-miniaturas {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

    .producto-miniaturas img {
        width: 60px;
        height: 60px;
    }

  
    .producto-imagen img {
        width: 70%;
        max-width: 260px;
        transition: none; 
    }

    .producto-imagen img:hover {
        transform: none; 
    }

    .producto-info {
        max-width: 100%;
        text-align: center;
    }

    .producto-opciones {
        justify-content: center;
    }

    
  .boton-contacto {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .boton-contacto img {
    width: 24px;
    height: 24px;
  }

  .footer-apartado {
    flex-direction: column;
    gap: 15px;
  }

  .footer-derecho {
    justify-content: center;
  }
}


