.products{
    padding: 8rem 1%;
    text-align: center;
}

.products-flex{
    margin-top: 4rem;
    display: flex;
    justify-content: space-evenly;
    gap: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 645px){
    .products-flex{
        gap: 4rem;
    }
}

.hero{
    background-image: url("../assets/img/hero-products.webp");
}

.div_logo > a > img{
    height: 40%;
}

@media (max-width: 650px){
    .div_logo > a > img{
        height: 35%;
    }
    .div_logo > a{
        height: 15vw;
    }
}


.product{
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
    transition: 0.2s;
    height: fit-content;
    width: 40%;
    min-width: 630px;
    display: flex;
    
    flex-direction: row;
    justify-content: space-between;
}

.product h3{
    width: 80%;
}

.product div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 1rem;
    width: 350px;
    height: auto;
    gap: 1rem;
    min-height: 250px;
}

.product div p{
    font-size: 1.4rem;
}

.product div .descripcion{
    font-size: 0.90rem;
    width: fit-content;
    padding: 20px;
    text-align:justify;
}

.product:hover{
    transform: translateY(-8px);
}

.product div img{
    aspect-ratio: 1 / 1;
    width:  100%;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

@media (max-width: 850px){
    .product{
        width: calc(80vw + 80px);
        height: fit-content;
        min-width: 0;
    }
    .product div{
        width: 50%;
    }
    .product div img{
        height: 100%;
    }
    .product div .descripcion{
        font-size: 1rem;
    }
}

@media (max-width: 650px){
    .product{
        width: calc(65vw + 40px);
        height: fit-content;
        max-height: 100vh;
        min-width: 0;
        flex-direction: column;
        align-items: center;
    }
    .product div{
        width: 100%;
        margin: 0 50px;
        height: 100%;
    }
    .product div img{
        width: 100%;
        height: auto;
    }
}


.price{
    font-weight: 800;
    margin: 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--color-acento);
}

.first_divisor{
    position: relative;
    top: 12vh;
}

nav{
    padding: 2rem;
}

.products{
    animation: fadeUp 0.5s ease-out;
}

.consultar{
    margin: 0;
    display: flex;
    align-items: center;
}

@media (max-width: 1000px){
    nav{
        height: 170px;
    }
}








.about-shop {
    padding: 80px 5%;
    text-align: center;
}

.about-header h2 {
    margin-bottom: 10px;
}



/* El Grid de 3 columnas */
.about-grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 30px;
    margin-bottom: 50px;
}

.about-card {
    background: #fff;
    padding: 2rem;
    width: calc(12.5vw + 200px);
    height: auto;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(58, 42, 31, 0.05); /* Sombra muy sutil */
    border-bottom: 3px solid #d4af37; /* Detalle dorado abajo */
    transition: transform 0.3s ease;
}

@media (max-width: 800px){
    .about-card{
        width: 60vw;
    }
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #d4af37; /* Dorado */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.about-footer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 30px;
}

/* Móvil */
@media (max-width: 768px) {
    .about-shop {
        padding: 50px 5%;
    }
}
