:root {
    --amarillo: #ffde59;
    --amarillo-hover: #ffe97a;
    --negro: #111111;
    --gris-oscuro: #1e1e1e;
    --gris-medio: #2e2e2e;
    --blanco: #ffffff;
    --gris-claro: #f0f0f0;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--negro);
    color: var(--blanco);
    overflow-x: hidden;
}

/* ─── HEADER ─── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--amarillo);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 70px;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 4px;
    color: var(--amarillo);
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
}

nav {
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--amarillo);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--negro);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 60%, rgba(255, 222, 89, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 20% 20%, rgba(255, 222, 89, 0.07) 0%, transparent 60%);
}

/* Floating magnets decoration */
.magnets-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.magnet-dot {
    position: absolute;
    border-radius: 8px;
    opacity: 0.12;
    animation: floatDot 6s ease-in-out infinite;
}

@keyframes floatDot {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(6deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    background: var(--amarillo);
    color: var(--negro);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease both;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 0.95;
    letter-spacing: 2px;
    animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 span {
    color: var(--amarillo);
}

.hero-sub {
    font-size: 1.15rem;
    color: #aaa;
    margin: 1.5rem auto;
    max-width: 500px;
    line-height: 1.7;
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--amarillo);
    color: var(--negro);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: var(--amarillo-hover);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--blanco);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: border-color 0.2s, transform 0.15s;
}

.btn-outline:hover {
    border-color: var(--amarillo);
    color: var(--amarillo);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 3rem;
    animation: fadeUp 0.6s 0.4s ease both;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--amarillo);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── TICKER ─── */
.ticker-wrap {
    background: var(--amarillo);
    color: var(--negro);
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 3px;
}

.ticker-inner {
    display: inline-flex;
    animation: ticker 28s linear infinite;
}

.ticker-inner span {
    padding: 0 2rem;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ─── SECTION COMMON ─── */
section {
    padding: 5rem 1.5rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-title span {
    color: var(--amarillo);
}

.section-sub {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

/* ─── CATEGORÍAS GRID ─── */
#categorias {
    background: var(--gris-oscuro);
}

.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 8px 20px;
    background: transparent;
    border: 2px solid var(--gris-medio);
    color: #bbb;
    border-radius: 100px;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    transition: all 0.2s;
}

.filter-btn.active, .filter-btn:hover {
    border-color: var(--amarillo);
    color: var(--negro);
    background: var(--amarillo);
}

.grid-categorias {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.card {
    display: flex;
    flex-direction: column;
    background: var(--gris-medio);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.card:hover .card-overlay {
    opacity: 1;
}

.card-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-img-wrap img, .card-emoji-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.card:hover .card-img-wrap img,
.card:hover .card-emoji-bg {
    transform: scale(1.08);
}

/* Emoji placeholder for cards without real images */
.card-emoji-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.card-overlay-btn {
    width: 100%;
    padding: 10px;
    background: var(--amarillo);
    color: var(--negro);
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.card-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--amarillo);
    color: var(--negro);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}

.card-body {
    padding: 1.2rem;
    flex: 1;
}

.card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-body p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.2rem 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.card-price {
    font-weight: 700;
    color: var(--amarillo);
    font-size: 1rem;
}

.card-desde {
    font-size: 0.72rem;
    color: #666;
}

/* ─── CÓMO FUNCIONA ─── */
#como-funciona {
    background: var(--negro);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--gris-oscuro);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-6px);
}

.step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: rgba(255, 222, 89, 0.15);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

/* ─── VENTAS ─── */
#ventas {
    background: var(--gris-oscuro);
}

.ventas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.venta-card {
    background: var(--negro);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.07);
    transition: border-color 0.3s, transform 0.3s;
}

.venta-card.destacado {
    border-color: var(--amarillo);
}

.venta-card:hover {
    transform: translateY(-6px);
}

.venta-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.venta-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.venta-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.venta-card ul li {
    font-size: 0.9rem;
    color: #aaa;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.venta-card ul li:last-child {
    border-bottom: none;
}

.badge-destacado {
    display: inline-block;
    background: var(--amarillo);
    color: var(--negro);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 1rem;
}

/* ─── TESTIMONIOS ─── */
#testimonios {
    background: var(--negro);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonio {
    background: var(--gris-oscuro);
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.testimonio:hover {
    transform: translateY(-5px);
}

.stars {
    color: var(--amarillo);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.testimonio p {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testi-autor {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--amarillo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--negro);
    font-size: 0.9rem;
}

.testi-nombre {
    font-weight: 600;
    font-size: 0.9rem;
}

.testi-ciudad {
    font-size: 0.78rem;
    color: #666;
}

/* ─── CONTACTO ─── */
#contacto {
    background: var(--gris-oscuro);
}

.contacto-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contacto-inner p {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contacto-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: #25D366;
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: 12px;
    transition: transform 0.2s, filter 0.2s;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.ig-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 12px;
    transition: transform 0.2s, filter 0.2s;
}

.ig-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* ─── FOOTER ─── */
footer {
    background: var(--negro);
    border-top: 2px solid rgba(255, 222, 89, 0.2);
    padding: 2rem;
    text-align: center;
    color: #555;
    font-size: 0.85rem;
}

footer span {
    color: var(--amarillo);
}

/* ─── MODAL ─── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    padding: 1rem;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--gris-oscuro);
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 100%;
    border: 2px solid var(--amarillo);
    transform: translateY(30px);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.modal-overlay.open .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 0.9rem;
    right: 1.1rem;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}

.modal-close:hover {
    background: var(--amarillo);
    color: var(--negro);
}

/* ─── GALERÍA EN MODAL ─── */
.modal-gallery {
    padding: 1.25rem 1.25rem 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gallery-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #222;
    aspect-ratio: 1;
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
}

.gallery-thumb:hover {
    border-color: var(--amarillo);
    transform: scale(1.03);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-thumb:hover img {
    transform: scale(1.08);
}

.gallery-thumb .thumb-emoji {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
}

.gallery-thumb .thumb-num {
    position: absolute;
    top: 6px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--amarillo);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
    letter-spacing: 0.5px;
}

.gallery-thumb .thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 16px 6px 6px;
    text-align: center;
}

/* ─── LIGHTBOX ─── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
    padding: 1rem;
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img-wrap {
    position: relative;
    max-width: min(90vw, 700px);
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-wrap img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    display: block;
}

.lightbox-close {
    position: fixed;
    top: 1.2rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.4rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--amarillo);
    color: var(--negro);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--amarillo);
    color: var(--negro);
}

.lightbox-nav.prev {
    left: 1rem;
}

.lightbox-nav.next {
    right: 1rem;
}

.lightbox-info {
    margin-top: 1rem;
    text-align: center;
}

.lightbox-label {
    color: var(--amarillo);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.lightbox-counter {
    color: #666;
    font-size: 0.8rem;
    margin-top: 2px;
}

.lightbox-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

.lb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.lb-dot.active {
    background: var(--amarillo);
    transform: scale(1.3);
}

.modal-body {
    padding: 1.5rem 1.75rem 1.75rem;
}

.modal-body h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
}

.modal-body p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.4rem;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ─── SCROLL NAV ─── */
.scroll-top {
    position: fixed;
    bottom: 90px;
    /* Antes estaba en 2rem (aprox 32px), la subimos */
    right: 25px;
    z-index: 999;
    width: 48px;
    height: 48px;
    background: var(--amarillo);
    color: var(--negro);

    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s, transform 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);

}

.scroll-top.visible {
    opacity: 1;
}

.scroll-top:hover {
    transform: translateY(-4px);
}

@media (max-width: 640px) {
    nav {
        display: none;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }
}

/* --- CONTENEDOR FLOTANTE --- */
.promo-floating-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 10000;
    /* Siempre encima de todo */
    font-family: 'DM Sans', sans-serif;
}

/* --- EL BOTÓN "PROMOS HOY" --- */
.promo-badge {
    background: #ffde59;
    /* Amarillo marca */
    color: #111111;
    /* Texto negro puro para contraste */
    padding: 14px 24px;
    /* Un poco más grande y cómodo */
    border-radius: 50px;
    cursor: pointer;
    font-weight: 800;
    /* Letra bien gruesa */
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    /* Sombra más profunda */
    border: none;
    text-transform: uppercase;
    transition: transform 0.2s, background 0.2s;
}

.promo-badge:hover {
    transform: scale(1.05);
    /* Efecto pop al pasar el mouse */
    background: #ffe97a;
    /* Amarillo más claro al hover */
}

/* --- EL RECUADRO DE PROMOS (Efecto Vidrio) --- */
.promo-content {
    display: none;
    /* Empieza oculto */
    position: absolute;
    bottom: 75px;
    /* Separación del botón */
    right: 0;
    width: 320px;
    /* Un poco más ancho para legibilidad */

    /* EFECTO GLASSMORPHISM */
    background: rgba(255, 255, 255, 0.1);
    /* Fondo blanco muy transparente */
    backdrop-filter: blur(15px) saturate(180%);
    /* El desenfoque clave */
    -webkit-backdrop-filter: blur(15px) saturate(180%);

    border-radius: 22px;
    padding: 25px;

    /* Sombras y borde sutil */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Borde blanco casi invisible */

    color: #ffffff;
    /* Texto blanco para este fondo */
    overflow: hidden;
}

/* Decoración: un sutil resplandor amarillo en la esquina */
.promo-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: rgba(255, 222, 89, 0.3);
    filter: blur(40px);
    border-radius: 50%;
    pointer-events: none;
}

/* --- ESTILOS INTERNOS DEL RECUADRO --- */
.promo-header {
    font-family: 'Bebas Neue';
    font-size: 1.8rem;
    color: #ffde59;
    /* Título en amarillo */
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 1px;
}

.promo-section {
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Separador sutil */
}

.promo-section.local {
    background: rgba(255, 222, 89, 0.15);
    /* Fondo sutil */
    padding: 12px;
    border-radius: 10px;
    margin-top: 10px;
}

.promo-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.promo-row {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
    font-size: 1rem;
    align-items: center;
}

/* ESTO ES LO QUE PEDISTE: Letras en negro */
.promo-row span {
    color: #ffffff;
    /* Blanco puro para que resalte sobre el fondo oscuro */
    font-weight: 500;
    font-size: 0.95rem;
}

.promo-row strong {
    color: #ffde59;
    /* Tu amarillo de marca */
    font-weight: 800;
    font-size: 1.1rem;
}

/* Botón de acción dentro de la promo */
.btn-promo-wa {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background 0.2s;
}

.btn-promo-wa:hover {
    background: #1ebe57;
}

/* Animación de entrada */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#promoContent[style*="display: block"] {
    animation: slideInUp 0.4s ease-out;
}