/* =========================================================
   MASTER CUPS - INDEX
   ========================================================= */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #f9f9f9;
}


/* =========================================================
   HERO PRINCIPAL
   ========================================================= */

.hero {
    position: relative;
    width: 100%;
    height: min(720px, 82vh);
    min-height: 560px;

    overflow: hidden;

    display: flex;
    align-items: center;

    box-sizing: border-box;
}


/* IMAGEN */

.hero-background {
    position: absolute;
    inset: 0;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: 58% center;

    z-index: 0;
}


/* OSCURECIMIENTO */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.48) 32%,
            rgba(0, 0, 0, 0.12) 65%,
            rgba(0, 0, 0, 0.02) 100%
        );

    z-index: 1;
}


/* CONTENIDO */

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 620px;

    margin-left: clamp(30px, 9vw, 50px);

    padding: 40px 20px;

    box-sizing: border-box;

    color: #ffffff;
}


/* PEQUEÑO TEXTO */

.hero-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #d4af37;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 4px;
    text-transform: uppercase;
}


/* TITULO */

.hero h1 {
    margin: 0 0 22px;

    font-size: clamp(3rem, 5vw, 5.2rem);
    line-height: 0.98;

    font-weight: 800;

    letter-spacing: -2px;

    text-shadow:
        0 5px 25px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    display: block;

    color: #d4af37;
}


/* TEXTO */

.hero-content p {
    max-width: 500px;

    margin: 0 0 30px;

    color: #f1f1f1;

    font-size: 1.08rem;
    line-height: 1.6;
}


/* BOTONES */

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;
}


.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 800;

    box-sizing: border-box;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.hero-btn:hover {
    transform: translateY(-3px);
}


/* BOTÓN PRINCIPAL */

.hero-btn-primary {
    background: #d4af37;
    color: #111;

    box-shadow:
        0 10px 25px rgba(212, 175, 55, 0.25);
}


.hero-btn-primary:hover {
    background: #e5c14b;

    box-shadow:
        0 14px 30px rgba(212, 175, 55, 0.35);
}


/* BOTÓN SECUNDARIO */

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.5);

    backdrop-filter: blur(8px);
}


.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}


/* =========================================================
   TÍTULOS GENERALES
   ========================================================= */

.section-title {
    position: relative;

    margin: 0 0 60px;

    color: #111;

    text-align: center;

    font-size: 2.5rem;
    font-weight: 800;

    letter-spacing: -1px;
}


.section-title::after {
    content: '';

    position: absolute;

    left: 50%;
    bottom: -15px;

    transform: translateX(-50%);

    width: 50px;
    height: 3px;

    background: #d4af37;

    border-radius: 2px;
}

/* =========================================================
   ACCESOS RÁPIDOS DEBAJO DEL HERO
   ========================================================= */

.accesos-rapidos {
    width: 100%;
    background: #ffffff;

    padding: 18px 20px;

    border-top: 1px solid rgba(212, 175, 55, 0.25);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);

    box-sizing: border-box;
}

.accesos-rapidos-contenido {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.accesos-rapidos-label {
    display: block;

    margin-bottom: 3px;

    text-align: center;

    color: #b08d00;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.accesos-rapidos h2 {
    margin: 0 0 12px;

    text-align: center;

    color: #111;

    font-size: 1.2rem;
    font-weight: 700;
}


/* =========================================================
   GRID
   ========================================================= */

.accesos-rapidos-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;
}


/* =========================================================
   TARJETA
   ========================================================= */

.acceso-rapido {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 9px 12px;

    background: #fafafa;

    border: 1px solid #e8e8e8;
    border-radius: 10px;

    text-decoration: none;

    box-sizing: border-box;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.acceso-rapido:hover {
    transform: translateY(-3px);

    background: #ffffff;

    border-color: #d4af37;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.07);
}


/* =========================================================
   ICONO
   ========================================================= */

.acceso-icon {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111;

    border-radius: 7px;

    font-size: 16px;
}


/* =========================================================
   TEXTO
   ========================================================= */

.acceso-texto {
    min-width: 0;

    display: flex;
    flex-direction: column;

    flex: 1;
}

.acceso-texto strong {
    color: #111;

    font-size: 0.78rem;
    font-weight: 800;
}

.acceso-texto small {
    margin-top: 1px;

    color: #777;

    font-size: 0.72rem;
}


/* =========================================================
   FLECHA
   ========================================================= */

.acceso-flecha {
    color: #b08d00;

    font-size: 0.65rem;
    font-weight: 700;

    transition: transform 0.25s ease;
}

.acceso-rapido:hover .acceso-flecha {
    transform: translateX(4px);
}

/* =========================================================
   MEDIOS DE PAGO
   ========================================================= */

.medios-pago {
    width: 100%;
    max-width: 1200px;

    margin: 55px auto;

    padding: 0 20px;

    box-sizing: border-box;
}


.medios-pago-header {
    margin-bottom: 30px;

    text-align: center;
}


.medios-pago-label {
    display: inline-block;

    margin-bottom: 10px;

    color: #b08d00;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.medios-pago-header h2 {
    margin: 0;

    color: #111;

    font-size: 28px;
    font-weight: 800;

    line-height: 1.2;
}


.medios-pago-header h2 span {
    color: #b08d00;
}


.medios-pago-header p {
    max-width: 600px;

    margin: 12px auto 0;

    color: #777;

    font-size: 14px;

    line-height: 1.6;
}


.medios-pago-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}


.medio-pago-card {
    position: relative;

    display: flex;
    align-items: center;

    gap: 20px;

    min-height: 150px;

    padding: 25px;

    background: #fff;

    border: 1px solid #e7e7e7;

    border-radius: 16px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.06);

    box-sizing: border-box;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.medio-pago-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.10);

    border-color: #d5b52a;
}


.medio-pago-icon {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111;

    border-radius: 14px;

    font-size: 27px;
}


.medio-pago-info {
    min-width: 0;
}


.medio-pago-info h3 {
    margin: 0 0 7px;

    color: #111;

    font-size: 18px;
    font-weight: 800;
}


.medio-pago-info p {
    margin: 0;

    color: #666;

    font-size: 13px;

    line-height: 1.5;
}


.medio-pago-precio {
    display: inline-block;

    margin-top: 12px;

    padding: 6px 10px;

    background: #f4f4f4;

    border-radius: 6px;

    color: #555;

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


.medio-pago-descuento {
    background: #111;

    border-color: #111;
}


.medio-pago-descuento:hover {
    border-color: #d4af37;
}


.medio-pago-descuento .medio-pago-info h3 {
    color: #fff;
}


.medio-pago-descuento .medio-pago-info p {
    color: #cfcfcf;
}


.medio-pago-descuento .medio-pago-info p strong {
    color: #d4af37;
}


.descuento-badge {
    display: inline-block;

    margin-bottom: 7px;

    padding: 4px 9px;

    background: #d4af37;

    border-radius: 5px;

    color: #111;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 0.8px;
}


.descuento-texto {
    background: rgba(212, 175, 55, 0.12);

    color: #d4af37;
}


/* =========================================================
   CATEGORÍAS BENTO
   ========================================================= */

.categorias-bento {
    padding: 100px 10%;

    background: #ffffff;
}


.bento-grid {
    display: grid;

    grid-template-columns: 1.4fr 1fr;

    grid-template-rows: repeat(2, 240px);

    gap: 25px;

    margin-top: 40px;
}


.bento-item {
    position: relative;

    display: flex;

    min-width: 0;

    overflow: hidden;

    background-color: #1a1a1a;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    border: 1px solid rgba(0, 0, 0, 0.05);

    border-radius: 16px;

    text-decoration: none;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.02);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.bento-item:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 40px rgba(212, 175, 55, 0.15);
}


.bento-content {
    position: relative;

    z-index: 2;

    width: 100%;

    box-sizing: border-box;
}


.bento-badge {
    display: inline-block;

    background: #d4af37;

    color: #000;

    padding: 6px 14px;

    border-radius: 20px;

    font-size: 0.8rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.bento-grande {
    grid-row: span 2;

    min-height: 450px;

    padding: 40px;

    align-items: flex-end;

    background-position: center;

    color: #fff;

    box-sizing: border-box;
}


.bento-grande::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.85) 10%,
            rgba(0, 0, 0, 0.3) 100%
        );

    z-index: 1;
}


.bento-grande h3 {
    margin: 10px 0;

    color: #fff;

    font-size: 2.3rem;
    font-weight: 700;
}


.bento-grande p {
    max-width: 80%;

    margin-bottom: 15px;

    color: #e0e0e0;

    font-size: 1rem;
}


.bento-pequena {
    min-height: 240px;

    padding: 20px;

    align-items: flex-start;

    background-color: #1a1a1a;

    background-size: contain;
}


.bento-pequena h3 {
    margin: 10px 0;

    color: #fff;

    font-size: 2.3rem;
    font-weight: 700;
}


.bento-link {
    display: inline-block;

    color: #d4af37;

    font-weight: 600;

    font-size: 0.95rem;
}


/* =========================================================
   PRODUCTOS DESTACADOS
   ========================================================= */

.destacados {
    padding: 100px 10%;

    background: #f9f9f9;
}


.grid-productos {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 40px;
}


.card-producto {
    padding: 25px;

    background: #fff;

    border: 1px solid rgba(0, 0, 0, 0.04);

    border-radius: 12px;

    text-align: center;

    box-sizing: border-box;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.card-producto:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08);
}


.card-producto img {
    width: 100%;
    height: 280px;

    margin-bottom: 20px;

    object-fit: contain;

    transition: transform 0.5s ease;
}


.card-producto img:hover {
    transform: scale(1.06);
}


.card-producto h3 {
    margin-bottom: 15px;

    color: #111;

    font-size: 1.15rem;
}


.ver-mas {
    display: inline-block;

    color: #1a1a1a;

    text-decoration: none;

    font-weight: bold;

    border-bottom: 2px solid #d4af37;

    transition: 0.3s;
}


.ver-mas:hover {
    padding: 6px 12px;

    color: #000;

    background: #d4af37;

    border-radius: 4px;
}


/* =========================================================
   FRANJA SECUNDARIA
   ========================================================= */

.seccion-franja-imagen {
    width: 100%;

    margin: 40px 0;

    overflow: hidden;

    border-radius: 12px;
}


.seccion-franja-imagen img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================================
   FEATURES
   ========================================================= */

.features-lux {
    padding: 80px 10%;

    background: #fff;
}


.features-header {
    margin-bottom: 50px;

    text-align: center;
}


.features-header h2 {
    margin-bottom: 10px;

    color: #111;

    font-size: 2.2rem;
    font-weight: 700;
}


.features-header p {
    margin: 0;

    color: #666;

    font-size: 1.05rem;
}


.features-container {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 30px;
}


.feature-card {
    position: relative;

    padding: 40px 30px;

    overflow: hidden;

    background: #fdfdfd;

    border: 1px solid rgba(0, 0, 0, 0.05);

    border-radius: 16px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.02);

    box-sizing: border-box;

    transition: all 0.4s ease;
}


.feature-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(212, 175, 55, 0.12);

    border-color:
        rgba(212, 175, 55, 0.3);
}


.feature-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background:
        rgba(212, 175, 55, 0.1);

    border-radius: 12px;

    font-size: 2.5rem;
}


.feature-card h3 {
    margin-bottom: 12px;

    color: #111;

    font-size: 1.25rem;
}


.feature-card p {
    margin: 0;

    color: #666;

    font-size: 0.95rem;

    line-height: 1.5;
}


/* =========================================================
   CTA WHATSAPP
   ========================================================= */

.cta-banner-lux {
    padding: 90px 10%;

    background: #111;

    color: #fff;

    text-align: center;

    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);

    box-sizing: border-box;
}


.cta-content {
    max-width: 700px;

    margin: 0 auto;
}


.cta-banner-lux h2 {
    margin-bottom: 15px;

    font-size: 2.5rem;
}


.cta-banner-lux p {
    margin-bottom: 30px;

    color: #ccc;

    font-size: 1.1rem;

    line-height: 1.6;
}


.btn-whatsapp-lux {
    display: inline-block;

    padding: 14px 35px;

    background:
        linear-gradient(
            135deg,
            #25d366,
            #128c7e
        );

    color: #fff;

    text-decoration: none;

    font-size: 1.1rem;
    font-weight: 700;

    border-radius: 8px;

    box-shadow:
        0 10px 25px rgba(37, 211, 102, 0.3);

    transition:
        transform 0.3s ease;
}


.btn-whatsapp-lux:hover {
    transform: translateY(-4px);
}


/* =========================================================
   CELEBRACIÓN + CATÁLOGO
   ========================================================= */

.celebracion-banner-lux {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    min-height: 420px;

    padding: 60px 8%;

    gap: 60px;

    overflow: hidden;

    background-color: #fff;

    background-image:
        url("../assets/fondobanner.5ad1998c5715.png");

    background-size: cover;
    background-position: center;

    border-top: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;

    box-sizing: border-box;
}


.celebracion-banner-lux::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.88) 0%,
            rgba(255,255,255,0.60) 45%,
            rgba(255,255,255,0.15) 100%
        );

    z-index: 1;
}


.celebracion-text {
    position: relative;

    z-index: 2;

    flex: 1;

    max-width: 500px;
}


.celebracion-label {
    color: #b08d00;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;
}


.celebracion-text h2 {
    margin: 12px 0 18px;

    color: #111;

    font-size: clamp(2rem, 4vw, 3rem);
}


.celebracion-text p {
    margin: 0;

    color: #444;

    font-size: 1.1rem;

    line-height: 1.6;
}


.celebracion-download {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 400px;
}


.descarga-card-premium {
    padding: 28px 24px;

    background: rgba(255,255,255,0.96);

    border: 1px solid rgba(212,175,55,0.45);

    border-top: 4px solid #d4af37;

    border-radius: 14px;

    text-align: center;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.18);

    backdrop-filter: blur(5px);

    box-sizing: border-box;
}


.descarga-card-premium p:first-of-type {
    margin-bottom: 10px;

    color: #111;

    font-size: 1.1rem;
    font-weight: 800;

    text-transform: uppercase;
}


.descarga-card-premium p:nth-of-type(2) {
    margin-bottom: 20px;

    color: #555;

    font-size: 0.85rem;

    line-height: 1.4;
}


.btn-descarga-gold {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 12px 20px;

    background: #111;

    color: #d4af37;

    border-radius: 8px;

    text-decoration: none;

    transition: 0.3s ease;
}


.btn-descarga-gold:hover {
    background: #d4af37;

    color: #111;

    transform: translateY(-2px);
}


.btn-descarga-gold .icon {
    font-size: 1.5rem;
}


.btn-descarga-gold .text-group {
    display: flex;
    flex-direction: column;

    text-align: left;
}


.btn-descarga-gold .main-text {
    font-size: 0.9rem;
    font-weight: 800;

    text-transform: uppercase;
}


.btn-descarga-gold .sub-text {
    font-size: 0.75rem;

    opacity: 0.85;
}


/* =========================================================
   IMÁGENES GENERALES
   ========================================================= */

img,
video,
canvas,
svg {
    max-width: 100%;
}


/* =========================================================
   TABLET GRANDE
   ========================================================= */

@media (max-width: 1024px) {

    .hero {
        height: 650px;
        min-height: 500px;
    }

    .hero-background {
        background-position: 60% center;
    }

    .hero-content {
        margin-left: 6%;
    }

    .categorias-bento {
        padding: 80px 6%;
    }

    .destacados {
        padding: 80px 6%;
    }

    .grid-productos {
        grid-template-columns: repeat(2, 1fr);

        gap: 25px;
    }

    .features-lux {
        padding: 70px 6%;
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner-lux {
        padding: 75px 6%;
    }

    .celebracion-banner-lux {
        padding: 50px 6%;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .hero {
        height: 580px;
    }

    .hero-background {
        background-position: 62% center;
    }

    .bento-grid {
        grid-template-columns: 1fr;

        grid-template-rows: auto;
    }

    .bento-grande {
        grid-row: span 1;

        min-height: 360px;
    }

    .bento-pequena {
        min-height: 240px;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .celebracion-banner-lux {
        flex-direction: column;

        justify-content: center;

        text-align: center;

        padding: 50px 30px;
    }

    .celebracion-banner-lux::before {
        background:
            rgba(255,255,255,0.82);
    }

    .celebracion-text {
        max-width: 600px;

        text-align: center;
    }

    .celebracion-download {
        max-width: 500px;
    }

    .accesos-rapidos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 768px) {

    body,
    html {
        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow-x: hidden !important;
    }


    /* -----------------------------------------------------
       HERO MÓVIL
       ----------------------------------------------------- */

    .hero {
        height: 470px;

        min-height: 0;

        align-items: center;
    }


    /*
       CLAVE:
       En lugar de hacer zoom excesivo sobre toda la imagen,
       mantenemos la zona derecha donde están los trofeos.
    */

    .hero-background {
        background-size: cover;

        background-position:
            68% center;
    }


    /*
       El degradado es más fuerte a la izquierda
       para que el texto sea legible.
    */

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,0.78) 0%,
                rgba(0,0,0,0.60) 35%,
                rgba(0,0,0,0.20) 72%,
                rgba(0,0,0,0.02) 100%
            );
    }


    .hero-content {
        max-width: 58%;

        margin-left: 20px;

        padding: 20px 0;
    }


    .hero-label {
        margin-bottom: 10px;

        font-size: 9px;

        letter-spacing: 2.5px;
    }


    .hero h1 {
        margin-bottom: 15px;

        font-size: 2rem;

        line-height: 1.02;

        letter-spacing: -1px;
    }


    .hero-content p {
        margin-bottom: 20px;

        font-size: 0.82rem;

        line-height: 1.4;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: stretch;

        gap: 9px;
    }


    .hero-btn {
        width: 100%;

        min-height: 43px;

        padding: 0 12px;

        font-size: 0.75rem;

        gap: 7px;
    }


    /* -----------------------------------------------------
       SECCIONES
       ----------------------------------------------------- */

    .section-title {
        margin-bottom: 45px;

        font-size: 2rem;
    }


    .categorias-bento {
        padding: 65px 5%;
    }


    .bento-grid {
        margin-top: 25px;

        gap: 18px;
    }


    .bento-grande {
        min-height: 320px;

        padding: 25px;
    }


    .bento-grande h3 {
        font-size: 1.8rem;
    }


    .bento-grande p {
        max-width: 100%;

        font-size: 0.95rem;
    }


    .bento-pequena {
        min-height: 230px;

        padding: 20px;
    }


    .bento-pequena h3 {
        font-size: 1.6rem;
    }


    .destacados {
        padding: 65px 5%;
    }


    .grid-productos {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    .card-producto {
        padding: 20px;
    }


    .card-producto img {
        height: 240px;
    }


    /* -----------------------------------------------------
       MEDIOS DE PAGO
       ----------------------------------------------------- */

    .medios-pago {
        margin: 40px auto;

        padding: 0 18px;
    }


    .medios-pago-header h2 {
        font-size: 24px;
    }


    .medios-pago-grid {
        grid-template-columns: 1fr;
    }


    .medio-pago-card {
        min-height: auto;

        padding: 20px;
    }


    /* -----------------------------------------------------
       FEATURES
       ----------------------------------------------------- */

    .features-lux {
        padding: 65px 5%;
    }


    .features-header {
        margin-bottom: 35px;
    }


    .features-header h2 {
        font-size: 1.9rem;
    }


    .feature-card {
        padding: 30px 25px;
    }


    /* -----------------------------------------------------
       CTA
       ----------------------------------------------------- */

    .cta-banner-lux {
        padding: 65px 5%;
    }


    .cta-banner-lux h2 {
        font-size: 2rem;
    }


    .cta-banner-lux p {
        font-size: 1rem;
    }


    .btn-whatsapp-lux {
        width: 100%;

        max-width: 360px;

        box-sizing: border-box;
    }


    /* -----------------------------------------------------
       CATÁLOGO
       ----------------------------------------------------- */

    .celebracion-banner-lux {
        min-height: auto;

        padding: 55px 20px;

        gap: 30px;
    }


    .celebracion-text h2 {
        font-size: 2rem;
    }


    .celebracion-text p {
        font-size: 1rem;
    }


    .celebracion-download {
        width: 100%;

        max-width: 100%;
    }


    .descarga-card-premium {
        padding: 22px 18px;
    }


    /* -----------------------------------------------------
       FRANJA
       ----------------------------------------------------- */

    .seccion-franja-imagen {
        min-height: 250px;

        margin: 20px 0;

        border-radius: 8px;
    }

}


/* =========================================================
   MÓVILES PEQUEÑOS
========================================================= */

@media (max-width: 480px) {

    /*
       HERO:
       todavía más compacto para que no ocupe
       toda la pantalla del teléfono.
    */

    .hero {
        height: 410px;
    }


    .hero-background {
        /*
           Los trofeos permanecen a la derecha.
        */
        background-position: 70% center;
    }


    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,0.82) 0%,
                rgba(0,0,0,0.64) 38%,
                rgba(0,0,0,0.18) 78%,
                rgba(0,0,0,0.02) 100%
            );
    }


    .hero-content {
        max-width: 57%;

        margin-left: 16px;
    }


    .hero h1 {
        font-size: 1.75rem;
    }


    .hero-content p {
        font-size: 0.76rem;

        line-height: 1.35;
    }


    .hero-btn {
        min-height: 40px;

        font-size: 0.7rem;
    }


    .section-title {
        font-size: 1.75rem;
    }


    .categorias-bento,
    .destacados,
    .features-lux {
        padding-left: 4%;
        padding-right: 4%;
    }


    .bento-grande {
        min-height: 290px;

        padding: 20px;
    }


    .bento-grande h3 {
        font-size: 1.55rem;
    }


    .bento-grande p {
        font-size: 0.9rem;
    }


    .bento-pequena {
        min-height: 200px;

        padding: 18px;
    }


    .bento-pequena h3 {
        font-size: 1.4rem;
    }


    .card-producto img {
        height: 210px;
    }


    .features-header h2 {
        font-size: 1.7rem;
    }


    .cta-banner-lux h2 {
        font-size: 1.75rem;
    }


    .cta-banner-lux p {
        font-size: 0.95rem;
    }


    .celebracion-text h2 {
        font-size: 1.7rem;
    }


    .medios-pago-header h2 {
        font-size: 21px;
    }


    .medios-pago-header p {
        font-size: 13px;
    }


    .medio-pago-card {
        gap: 15px;

        padding: 18px;
    }


    .medio-pago-icon {
        width: 48px;
        height: 48px;

        font-size: 22px;
    }


    .medio-pago-info h3 {
        font-size: 16px;
    }


    .medio-pago-info p {
        font-size: 12px;
    }


    .pago-header h2 {
        font-size: 1.75rem;
    }

}


/* =========================================================
   TELÉFONOS MUY PEQUEÑOS
========================================================= */

@media (max-width: 360px) {

    .hero {
        height: 380px;
    }


    .hero-background {
        background-position: 72% center;
    }


    .hero-content {
        max-width: 58%;

        margin-left: 12px;
    }


    .hero h1 {
        font-size: 1.55rem;
    }


    .hero-content p {
        font-size: 0.7rem;
    }


    .hero-btn {
        min-height: 38px;

        font-size: 0.65rem;
    }


    .section-title {
        font-size: 1.6rem;
    }


    .bento-grande h3 {
        font-size: 1.4rem;
    }


    .bento-pequena h3 {
        font-size: 1.3rem;
    }


    .btn-whatsapp-lux {
        font-size: 1rem;

        padding: 13px 20px;
    }


    .btn-descarga-gold {
        padding: 11px 14px;
    }

    .accesos-rapidos {
        padding: 25px 12px;
    }

    .accesos-rapidos h2 {
        font-size: 1.3rem;
    }
}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 550px) {

    .accesos-rapidos {
        padding: 30px 15px;
    }

    .accesos-rapidos h2 {
        font-size: 1.4rem;

        margin-bottom: 20px;
    }

    .accesos-rapidos-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .acceso-rapido {
        padding: 14px;
    }

}

