html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Golos Text', sans-serif;
    background-color: #fff;
    color: #333;
}

/*PANTALLA GIGANTE PROMOCIONAL*/

.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    height: 35vh;
    /* Ocupa casi toda la pantalla */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 80px;
}

/* Capa de sombreado suave para resaltar el texto */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-top: 400px;
}

/* ============================
   COLECCIONES DESTACADAS
============================ */
.featured-collections {
    text-align: center;
    padding: 80px 40px;
    background-color: #fff;
}

.featured-collections h2 {
    font-size: 2em;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.featured-collections p {
    font-size: 1em;
    color: #555;
    margin-bottom: 50px;
}

.featured-collections a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    justify-items: center;
}

.collection-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    max-width: 250px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.collection-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.collection-card h3 {
    font-size: 1em;
    margin: 15px 0 5px 0;
}

.collection-card p {
    font-size: 0.9em;
    color: #555;
    margin: 0 10px 15px 10px;
}

.btn-small {
    display: inline-block;
    border: 1px solid #000;
    padding: 8px 15px;
    text-decoration: none;
    color: #000;
    font-size: 0.85em;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.btn-small:hover {
    background-color: #000;
    color: #fff;
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: 1;
        margin-top: 20px;
    }
}


/* === RESPONSIVE === */
@media (max-width: 768px) {
    .sugerencias {
        padding: 40px 3%;
    }

    .producto {
        min-width: 200px;
    }

    .producto img {
        height: 260px;
    }

    .carousel-btn {
        padding: 12px 15px;
        font-size: 20px;
    }

    .prev {
        left: 5px;
    }

    .next {
        right: 5px;
    }

    .formas-compra {
        padding: 40px 3%;
    }

    .opciones {
        gap: 20px;
    }

    .opcion {
        padding: 20px;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .producto {
        min-width: 160px;
    }

    .producto img {
        height: 220px;
    }

    .productos {
        gap: 20px;
    }
}

/* Ocultar inicialmente todas las cards */
.featured-collections .collection-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Clase que se activa al hacer scroll */
.featured-collections .collection-card.show {
    opacity: 1;
    transform: translateY(0);
}

