/*
Theme Name: GeneratePress Child
Template: generatepress
Version: 1.0
*/
#live-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #141a2e;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255,0,76,0.6);
    display: none;
    z-index: 9999;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background:
        radial-gradient(circle at 20% 10%, rgba(255,0,76,0.15), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0,245,255,0.15), transparent 40%),
        linear-gradient(180deg, #0b0f1a 0%, #0a0d17 100%);
    color: #ffffff;
    overflow-x: hidden;
    padding-top: 90px;
}

.money {
    position: fixed;
    top: -50px;
    font-size: 20px;
    color: #00ff66;
    animation: fall 5s linear infinite;
}

@keyframes fall {
    to { transform: translateY(110vh); }
}

body {
    padding-top: 120px;
}

/* PARTICLES */
#particles-bg{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-1;
    pointer-events:none;
}
/* ===== TOP OFFER BAR ===== */

.top-offer-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(90deg,#ff0000,#ff0066,#ff0000);
    background-size: 200% 100%;
    animation: glowMove 4s linear infinite;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10000;
    transition: transform 0.4s ease;
}

@keyframes glowMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}


/* SIDE MENU */
.page-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr 260px;
    max-width: 1600px;
    margin: 0 auto;
    gap: 40px;
}

.top-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(10,15,30,0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff0066;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg,#ff004c,#00f5ff);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 28px;
    background: linear-gradient(90deg,#ff004c,#ff0066);
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255,0,76,0.6);
}


/* LOADER */
#loader{
    position:fixed;
    inset:0;
    background:#0b0f1a;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
}
.loader-logo{
    font-size:40px;
    color:#ff0066;
    animation:pulse 1.5s infinite;
}
@keyframes pulse{
    0%{opacity:0.4;}
    50%{opacity:1;}
    100%{opacity:0.4;}
}

/* PROMOS */
.promo-section {
    padding: 180px 0;
    position: relative;
}


.hero-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    max-width:1300px;
    margin:auto;
    gap:80px;
    align-items:center;
}
.hero-grid.reverse{
    grid-template-columns:1fr 1.2fr;
}
.hero-grid.reverse .hero-image{
    order:-1;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 900;
    text-shadow:
        0 0 10px #ff004c,
        0 0 20px #ff0066,
        0 0 40px #ff0000;
}

.hero-text p {
    font-size: 22px;
    color: #ffcc00;
    opacity: 0.9;
}

.logo-hero{
    width:180px;
}

.hero-image img {
    width: 100%;
    max-width: 650px;   /* antes 450px */
    height: auto;
    border-radius: 25px;
    box-shadow:
        0 0 50px rgba(255,0,76,0.35),
        0 0 100px rgba(0,245,255,0.2);
}
.btn-vegas {
    display: inline-block;
    padding: 22px 60px;
    font-size: 20px;
    font-weight: 800;
    border-radius: 60px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(90deg,#ff004c,#ff00aa,#ff004c);
    background-size: 300%;
    animation: vegasGlow 4s linear infinite;
    box-shadow:
        0 0 20px #ff004c,
        0 0 40px #ff0066,
        0 0 80px #ff00aa;
    transition: 0.3s;
}

.btn-vegas:hover {
    transform: scale(1.08);
}

@keyframes vegasGlow {
    0% { background-position: 0% }
    100% { background-position: 300% }
}

.btn-primary-cta {
    padding: 18px 48px;
    background: linear-gradient(90deg,#ff004c,#ff0066);
    border-radius: 60px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(255,0,76,0.6);
    transition: 0.3s;
}

.btn-primary-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 50px rgba(255,0,76,0.9);
}

.btn-secondary-cta {
    padding: 18px 48px;
    background: transparent;
    border: 2px solid #00f5ff;
    border-radius: 60px;
    font-weight: 600;
    color: #00f5ff;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary-cta:hover {
    background: #00f5ff;
    color: #000;
}
.bonus-progress {
    width: 100%;
    height: 10px;
    background: #222;
    border-radius: 10px;
    margin-top: 20px;
}

.bonus-bar {
    width: 75%;
    height: 100%;
    background: linear-gradient(90deg,#ff004c,#00f5ff);
    border-radius: 10px;
    animation: progressAnim 3s infinite alternate;
}

@keyframes progressAnim {
    from { width: 60%; }
    to { width: 90%; }
}
.mini-cta {
    margin-top: 15px;
    font-size: 14px;
    color: #ff0066;
    animation: pulseText 1.8s infinite;
}
/* BUTTON */
.btn-neon {
    display: inline-block;
    padding: 18px 48px;
    background: linear-gradient(90deg, #ff004c, #ff0066);
    border-radius: 60px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: 0.3s;
    color: #fff;
}

.btn-neon:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 25px rgba(255,0,76,0.7),
        0 0 50px rgba(255,0,76,0.4);
}

/* FADE */
.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:all 0.8s ease;
}
.fade-up.visible{
    opacity:1;
    transform:translateY(0);
}

/* DIVIDER */
.neon-divider {
    height: 6px;
    width: 85%;
    margin: 0px auto;
    border-radius: 10px;
    background: linear-gradient(90deg, 
        transparent, 
        #ff004c, 
        #ff0066, 
        #00f5ff, 
        transparent
    );
    box-shadow:
        0 0 10px #ff004c,
        0 0 20px #ff0066,
        0 0 30px #00f5ff;
}

.cta-strip {
    display:flex;
    justify-content:center;
    align-items:center;
    margin: 0px auto;
    gap:30px;
    padding:40px;
    background: linear-gradient(90deg,#ff004c,#ff0066);
    box-shadow:0 0 40px rgba(255,0,76,0.6);
}

.btn-strip {
    background:#000;
    padding:12px 30px;
    border-radius:40px;
    color:#fff;
    text-decoration:none;
}

/* STICKY */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 36px;
    border-radius: 60px;
    background: rgba(20,26,46,0.9);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: 0.3s;
}

.sticky-cta:hover {
    border-color: #ff0066;
    box-shadow: 0 15px 40px rgba(255,0,76,0.4);
}
.floating-cta {
    position: fixed;
    left: 20px;
    bottom: 120px;
    background: linear-gradient(90deg,#ff004c,#ff0066);
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 700;
    box-shadow: 0 0 30px rgba(255,0,76,0.8);
    animation: pulseCta 1.8s infinite;
    z-index: 999;
}

.floating-cta a {
    display:block;
    margin-top:5px;
    color:#fff;
    text-decoration:none;
}

@keyframes pulseCta {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
/* FOOTER */
.footer {
    width: 100%;
    padding: 80px 20px;
    text-align: center;
    background: #000;
    font-size: 14px;
    opacity: 0.7;
    margin-top: 0 !important;
    padding-top: 60px;
}


/* RESPONSIVE */
@media(max-width:1000px){
    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }
    .hero-image img{
        max-width:380px;
    }
}
/* FEATURES */

.section-title {
    text-align: center;
    font-size: 60px;
    margin-bottom: 70px;
    font-weight: 700;
    letter-spacing: -1px;
}

.features {
    padding: 160px 40px;
    position: relative;
}

.features .card {
    background: rgba(20,26,46,0.85);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 22px;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.features .card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 0 25px rgba(255,0,76,0.5),
        0 0 45px rgba(0,245,255,0.3);
}

.features h3 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 15px;
}

.features p {
    text-align: center;
    font-size: 25px;
    opacity: 0.8;
    line-height: 1.6;
}

.features {
    padding: 180px 40px;
}
.features .grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 50px;
    margin-bottom: 90px;
    font-weight: 700;
}

.payment-card {
    background: linear-gradient(180deg, rgba(20,26,46,0.9), rgba(15,20,35,0.9));
    padding: 60px 50px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 0 30px rgba(255,0,76,0.15);
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 0 35px rgba(255,0,76,0.5),
        0 0 60px rgba(0,245,255,0.3);
}

.payment-card h3 {
    font-size: 20px;
    margin-bottom: 50px;
    color: #ffd700;
    letter-spacing: 1px;
}


.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logos img {
    height: 55px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.logos img:hover {
    transform: scale(1.15);
}


/* GAMES */

.games {
    padding: 120px 40px;
}

.games h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 42px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.game-card {
    position: relative;
    height: 320px;
    border-radius: 22px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s ease;
    box-shadow:
        0 0 30px rgba(255,0,76,0.2);
}

.game-card:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 50px rgba(255,0,76,0.5),
        0 0 80px rgba(0,245,255,0.3);
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.4),
        transparent
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.game-overlay h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffd700;
    text-shadow:
        0 0 10px #ff004c,
        0 0 20px #ff0066;
}

/* CTA FINAL */

.cta-final {
    position: relative;
    width: 100%;
    padding: 160px 40px;
    text-align: center;
    background: radial-gradient(circle at center, #1b2550 0%, #0b0f1a 70%);
    margin-top: 100px;
    z-index: 2;
    margin-bottom: 0 !important;
    padding-bottom: 120px; /* ajusta si quieres m谩s o menos aire interno */
}

.cta-final .container {
    max-width: 1200px;
    margin: 0 auto;
}


.btn-primary {
    display: inline-block;
    padding: 18px 50px;
    background: #00f5ff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 0 35px rgba(0, 245, 255, 0.6);
}
.page-wrapper {
    display: grid;
    grid-template-columns: 260px minmax(0,1fr) 260px;
    max-width: 1600px;
    margin: 0 auto;
    gap: 40px;
    align-items: start;
}


.main-content {
    padding: 0 40px;
}

.sidebar {
    padding: 120px 20px;
    position: sticky;
    top: 120px;
    height: fit-content;
}


.ad-box {
    position: relative;
    background: #141a2e;
    padding: 25px;
    border-radius: 18px;
    margin-bottom: 35px;
    overflow: hidden;
    transition: 0.3s;
}

/* MARCO NEON */

.ad-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px; /* grosor del marco */
    background: linear-gradient(90deg, 
        #ff004c, 
        #ff0066, 
        #00f5ff, 
        #ff004c
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.telegram-box {
    text-align: center;
}

.telegram-text {
    margin-top: 18px;
    font-size: 16px;
    font-weight: 600;
    color: #ffd700;
    line-height: 1.4;
    letter-spacing: 0.5px;
    animation: pulseText 2s infinite;
}

.telegram-text span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.8;
    margin-top: 5px;
}

/* Animaci贸n suave */

@keyframes pulseText {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}


/* Glow exterior */

.ad-box {
    background: rgba(20,26,46,0.9);
    backdrop-filter: blur(8px);
}


.ad-box:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 25px rgba(255,0,76,0.6),
        0 0 40px rgba(0,245,255,0.4);
}

@media(max-width:1400px){
    .page-wrapper {
        grid-template-columns: 200px 1fr 200px;
    }
}

@media(max-width:1100px){
    .page-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        padding: 40px 20px;
    }
}
.ad-box img {
    width: 100%;
    border-radius: 15px;
    transition: 0.3s;
}

.ad-box img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(255,0,76,0.4);
}

.mid-cta {
    text-align: center;
    margin: 40px 0;
}

.mid-cta a {
    font-weight: 700;
    color: #ffd700;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
}

.mid-cta a:hover {
    color: #ff0066;
}
.extreme-cta {
    background: linear-gradient(180deg,#1b2550,#0b0f1a);
    padding: 200px 40px;
}

.btn-ultra {
    display:inline-block;
    padding:25px 70px;
    background:linear-gradient(90deg,#ff004c,#ff0066);
    border-radius:80px;
    font-size:22px;
    font-weight:800;
    letter-spacing:1px;
    color:#fff;
    text-decoration:none;
    box-shadow:0 0 60px rgba(255,0,76,0.8);
    transition:0.3s;
}

.btn-ultra:hover {
    transform:scale(1.08);
}
/* POPUP OVERLAY */
.promo-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.promo-popup.active {
    opacity: 1;
    visibility: visible;
}

/* CONTENIDO */
.popup-content {
    background: linear-gradient(180deg,#141a2e,#0f1425);
    padding: 60px 50px;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow:
        0 0 30px rgba(255,0,76,0.6),
        0 0 60px rgba(0,245,255,0.3);
}

/* BOTON CERRAR */
.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    transition: 0.3s;
}

.popup-close:hover {
    color: #ff0066;
}
.btn-primary-premium {
    position: relative;
    padding: 18px 50px;
    border-radius: 60px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg,#ff004c,#ff2d75);
    box-shadow:
        0 10px 30px rgba(255,0,76,0.35);
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-primary-premium:hover {
    transform: translateY(-4px);
    box-shadow:
        0 15px 40px rgba(255,0,76,0.5);
}
.vegas-badge {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg,#ff0000,#ff0066,#ff0000);
    background-size: 200%;
    animation: neonMove 3s linear infinite;
    box-shadow:
        0 0 10px #ff004c,
        0 0 20px #ff0066,
        0 0 40px #ff0000;
    margin-bottom: 25px;
}

@keyframes neonMove {
    0% { background-position: 0% }
    100% { background-position: 200% }
}
.live-jackpot {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin: 40px 0;
    letter-spacing: 1px;
    color: #ffd700;
    text-shadow:
        0 0 10px #ff004c,
        0 0 20px #ff0066,
        0 0 40px #ff0000;
}

#jackpot-counter {
    font-size: 36px;
    color: #fff;
}
.video-cta-box {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.video-cta-box video {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 18px;
}

/* Overlay */

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.1)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.video-overlay h4 {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 12px;
    text-shadow: 0 0 10px #ff004c;
}

/* CTA BUTTON */

.video-cta-btn {
    padding: 12px 28px;
    border-radius: 40px;
    background: linear-gradient(90deg,#ff0000,#ff0066);
    font-weight: 800;
    text-decoration: none;
    color: #fff;
    box-shadow:
        0 0 20px #ff004c,
        0 0 40px #ff0066;
    transition: 0.3s;
}

.video-cta-btn:hover {
    transform: scale(1.08);
    box-shadow:
        0 0 30px #ff004c,
        0 0 60px #ff0066;
}
.video-section {
    padding: 140px 40px;
    text-align: center;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow:
        0 0 40px rgba(255,0,76,0.3),
        0 0 80px rgba(0,245,255,0.2);
}

.video-wrapper video {
    width: 100%;
    display: block;
}

.video-wrapper .video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.3),
        transparent
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 40px;
}

.video-overlay h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #ffd700;
}
/* ================= MOBILE FIX ================= */

/* =========================
   MOBILE FIX FULL CASINO
   ========================= */

@media (max-width: 768px) {

    /* NAV */
    .nav-container {
        padding: 12px 15px;
    }

    .nav-links {
        gap: 18px;
        font-size: 14px;
    }

    .nav-cta {
        padding: 8px 18px;
        font-size: 14px;
    }

    /* HERO GRID FIX */
    .hero-grid,
    .hero-grid.reverse {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }

    .hero-grid.reverse .hero-image {
        order: 0 !important;
    }

    .hero-text h1 {
        font-size: 38px !important;
        line-height: 1.1;
    }

    .hero-text p {
        font-size: 16px;
    }

    /* HERO IMAGE FIX */
    .hero-image img {
        max-width: 90%;
        margin: 0 auto;
        display: block;
    }

    .logo-hero {
        width: 130px;
        margin-bottom: 15px;
    }

    /* PROMO SECTIONS */
    .promo-section {
        padding: 120px 20px;
    }

    /* BUTTONS */
    .btn-neon {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }

    /* POPULAR GAMES FIX */
    .grid-4 {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .game-card {
        padding: 40px 15px;
    }

    .game-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 15px;
    }

    /* FOOTER FIX */
    .footer {
        margin-left: 0 !important;
        width: 100%;
        padding: 40px 20px;
    }

    /* REMOVE SIDE GRID */
    .page-wrapper {
        grid-template-columns: 1fr !important;
    }

    .sidebar {
        display: none; /* en móvil ocultamos sidebars */
    }

    /* CTA FLOAT FIX */
    .sticky-cta {
        bottom: 80px;
        right: 15px;
        padding: 12px 20px;
        font-size: 14px;
    }

    /* VEGAS FLOAT FIX */
    .vegas-float {
        left: 15px;
        bottom: 140px;
        font-size: 13px;
        padding: 12px 18px;
    }

}
/* =========================
   PROMOS MOBILE FIX PRO
   ========================= */

@media (max-width: 768px) {

    /* Forzar estructura limpia */
    .hero-grid,
    .hero-grid.reverse {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        gap: 30px;
    }

    /* Eliminar cualquier order raro */
    .hero-grid.reverse .hero-image {
        order: 2 !important;
    }

    .hero-text {
        order: 1;
        width: 100%;
    }

    .hero-image {
        width: 100%;
        text-align: center;
    }

    /* AQUÍ ESTÁ LA CLAVE */
    .hero-image img {
        width: 85% !important;
        max-width: 320px !important;
        height: auto !important;
        display: block;
        margin: 0 auto;
        object-fit: contain !important;
    }

    /* Ajuste de títulos */
    .hero-text h1 {
        font-size: 34px !important;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 16px;
    }

    /* Padding general promo */
    .promo-section {
        padding: 100px 20px;
    }
}