/* =========================================
   LRA MUSIC | V85 (FULL RESTORE + GRID FIX + INTENSITY)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=Inter:wght@300;400;600;900&display=swap');

:root {
    --fondo: #050505; 
    --fondo-alt: #131129;
    --naranja: #ff8c00; 
    --texto: #ffffff;
    --glass-nav: rgba(5, 5, 5, 0.95);
    --radio-borde: 12px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
    margin: 0; padding: 0;
    font-family: 'Inter', sans-serif;
    background: var(--fondo);
    color: var(--texto);
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    -webkit-overflow-scrolling: touch; 
    text-size-adjust: 100%;
}

body.no-scroll { overflow: hidden; }

.nav-links a:focus-visible,
.btn-outline-visible:focus-visible,
.btn-oferta:focus-visible,
.whatsapp-vinyl-btn:focus-visible {
    outline: 2px solid var(--naranja);
    outline-offset: 4px;
}

/* --- NAVBAR --- */
.navbar {
    padding: 10px 5%;
    background: var(--glass-nav);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 2000;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.logo-img { height: 50px; width: auto; display: block; }

/* MENÚ CÁPSULA */
.vinyl-menu-pill { 
    cursor: pointer; display: flex; align-items: center; gap: 10px; 
    z-index: 2001; background: rgba(255, 140, 0, 0.9);
    padding: 5px 15px 5px 5px; border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.2s;
    user-select: none;
}
.vinyl-menu-pill:active { transform: scale(0.95); }
.vinyl-icon-wrapper { 
    width: 36px; height: 36px; background: #111; border-radius: 50%; 
    position: relative; border: 2px solid #fff; 
    display: flex; align-items: center; justify-content: center; 
    animation: spin 6s linear infinite; flex-shrink: 0; 
}
.vinyl-icon-wrapper .vinyl-grooves {
    position: absolute; inset: 0; border-radius: 50%;
    background: repeating-radial-gradient(#111 0, #111 2px, #333 3px, #333 4px);
}
.vinyl-label-center { 
    width: 12px; height: 12px; background: var(--naranja); 
    border-radius: 50%; z-index: 2; border: 2px solid #fff;
}
.menu-pill-text { 
    font-size: 0.9rem; letter-spacing: 1px; font-weight: 900; 
    text-transform: uppercase; color: white; white-space: nowrap; 
}
@media (max-width: 768px) {
    .vinyl-menu-pill { padding: 4px 12px 4px 4px; }
    .menu-pill-text { font-size: 0.85rem; }
    .navbar { padding: 10px 15px; }
}

/* OVERLAY MENU */
.nav-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100dvh; 
    background: rgba(10, 9, 20, 0.98);
    display: flex; justify-content: center; align-items: center;
    z-index: 1500; opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.nav-overlay.active { opacity: 1; pointer-events: all; }
.nav-links { list-style: none; padding: 0; text-align: center; display: flex; flex-direction: column; gap: 30px; }
/* NAV IMPROVEMENTS */
.nav-links a { 
    color: white; 
    text-decoration: none; 
    font-size: 2rem; 
    font-weight: bold; 
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
} 
.nav-links a:hover { 
    color: var(--naranja); 
    transform: scale(1.1);
}
.nav-links a:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--naranja);
    transition: width 0.4s ease;
}
.nav-links a:hover:before {
    width: 100%;
}

/* --- HERO SECTION --- */
.hero {
    position: relative; 
    height: 100vh; height: 100dvh; 
    width: 100%; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    background: #050505;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 140, 0, 0.28), transparent 45%),
                radial-gradient(circle at 30% 60%, rgba(0, 191, 255, 0.18), transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 69, 0, 0.18), transparent 55%);
    mix-blend-mode: screen;
    opacity: 0.65;
    z-index: 2;
    pointer-events: none;
    animation: heroGlow 10s ease-in-out infinite alternate;
}

.hero::after {
    display: none;
}

/* Fondo Club Dinámico */
.club-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #0a0a0a 0%, #000000 100%);
}

.stage-lights {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    mix-blend-mode: screen;
}

.stage-beam {
    position: absolute;
    bottom: -12%;
    width: min(48vw, 520px);
    height: 130%;
    opacity: 0.28;
    filter: blur(10px);
    transform-origin: bottom center;
}

.stage-beam::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(210, 235, 255, 0) 0%, rgba(190, 225, 255, 0.2) 22%, rgba(170, 215, 255, 0.48) 44%, rgba(190, 225, 255, 0.2) 64%, rgba(210, 235, 255, 0) 100%);
    clip-path: polygon(42% 100%, 58% 100%, 100% 0, 0 0);
}

.stage-beam::after {
    content: "";
    position: absolute;
    inset: -10% -12%;
    background: radial-gradient(ellipse at 50% 78%, rgba(195, 230, 255, 0.25) 0%, rgba(175, 220, 255, 0.16) 30%, rgba(170, 220, 255, 0.06) 55%, transparent 72%);
    filter: blur(26px);
}

.beam-left {
    left: -8%;
    animation: beamPanLeft 12s ease-in-out infinite alternate;
}

.beam-right {
    right: -8%;
    animation: beamPanRight 12s ease-in-out infinite alternate;
    animation-delay: -6s;
}

/* LUCES LED */
.color-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px); 
    opacity: 0.7; 
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    mix-blend-mode: screen; 
    width: 25vw; height: 25vw; 
    max-width: 200px; max-height: 200px;
}

@media (max-width: 500px) {
    .color-blob {
        width: 30vw; height: 30vw; 
        max-width: none; max-height: none;
        filter: blur(40px); 
        opacity: 0.8; 
    }
}

.blob-red { background: #FF3300; top: 20%; left: 30%; animation-name: led-pulse-1; animation-duration: 10s; }
.blob-blue { background: #0099FF; bottom: 30%; right: 30%; animation-name: led-pulse-2; animation-duration: 5s; }
.blob-orange { background: #FF8000; top: 40%; left: 45%; width: 20vw; height: 20vw; animation-name: led-pulse-3; animation-duration: 5s; }
.blob-green { background: #33CC33; bottom: 20%; left: 25%; animation-name: led-pulse-4; animation-duration: 8s; }
.blob-mauve { background: #A06060; top: 25%; right: 25%; animation-name: led-pulse-5; animation-duration: 15s; }
@media (max-width: 768px) { .blob-orange { width: 50vw; height: 50vw; } }

@keyframes led-pulse-1 { 0% { transform: translate(0, 0) scale(1); opacity: 0.5; } 50% { opacity: 0.9; } 100% { transform: translate(30px, 20px) scale(1.1); opacity: 0.5; } }
@keyframes led-pulse-2 { 0% { transform: translate(0, 0) scale(1); opacity: 0.6; } 50% { transform: translate(-30px, -15px) scale(0.95); opacity: 0.4; } 100% { transform: translate(-15px, 25px) scale(1.05); opacity: 0.8; } }
@keyframes led-pulse-3 { 0% { transform: scale(0.9); opacity: 0.4; } 50% { transform: scale(1.2); opacity: 0.9; } 100% { transform: scale(0.9); opacity: 0.4; } }
@keyframes led-pulse-4 { 0% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; } 100% { transform: translate(20px, -30px) rotate(20deg); opacity: 0.8; } }
@keyframes led-pulse-5 { 0% { transform: scale(1); opacity: 0.4; } 100% { transform: scale(1.15); opacity: 0.7; } }

@keyframes heroGlow {
    0% { opacity: 0.55; filter: blur(0px); }
    50% { opacity: 0.7; filter: blur(4px); }
    100% { opacity: 0.6; filter: blur(2px); }
}

@keyframes pulseGlow {
    0% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.2); }
    50% { text-shadow: 0 0 25px rgba(255, 255, 255, 0.7), 0 0 55px rgba(255, 140, 0, 0.35); }
    100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.2); }
}

@keyframes heroSweep {
    0% { transform: translateX(0) rotate(12deg); opacity: 0.35; }
    50% { opacity: 0.55; }
    100% { transform: translateX(120%) rotate(12deg); opacity: 0.35; }
}

@keyframes beamPanLeft {
    0% { transform: rotate(17deg) scale(1); opacity: 0.18; }
    50% { opacity: 0.36; }
    100% { transform: rotate(31deg) scale(1.04); opacity: 0.22; }
}

@keyframes beamPanRight {
    0% { transform: rotate(-17deg) scale(1); opacity: 0.18; }
    50% { opacity: 0.36; }
    100% { transform: rotate(-31deg) scale(1.04); opacity: 0.22; }
}

@keyframes heroStack {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-6px) scale(1.01); }
}

@keyframes playPulse {
    0% { box-shadow: 0 0 12px rgba(255, 140, 0, 0.5); transform: translateY(-1px) scale(1); }
    50% { box-shadow: 0 0 20px rgba(255, 140, 0, 0.8); transform: translateY(-1px) scale(1.05); }
    100% { box-shadow: 0 0 12px rgba(255, 140, 0, 0.5); transform: translateY(-1px) scale(1); }
}

/* --- HERO TEXTOS --- */
.hero-content { 
    z-index: 3; text-align: center; 
    padding: 0 5%; width: 100%; max-width: 1200px;
    position: relative; display: flex; flex-direction: column; align-items: center;
}

.brand-title-container {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    margin-bottom: 30px; position: relative;
    perspective: 1000px; width: 100%; 
    animation: heroStack 10s ease-in-out infinite alternate;
}

.hero-text-base {
    font-size: clamp(2.5rem, 10vw, 6rem); 
    line-height: 1; text-transform: uppercase;
    letter-spacing: -1px; margin: 0; position: relative; font-weight: 800;
    width: 100%; max-width: 100%; word-wrap: normal;
}

.text-luces {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(180deg, #FFFFFF 0%, #888888 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    z-index: 1; filter: drop-shadow(0 0 30px rgba(255,255,255,0.1));
    font-weight: 700;
}

.text-ritmo {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(180deg, #888888 0%, #222222 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    z-index: 2; margin-top: -5px;
    filter: drop-shadow(0 2px 10px rgba(255,255,255,0.1));
    font-weight: 700;
}

.text-accion {
    font-family: 'Inter', sans-serif;
    font-weight: 900; 
    letter-spacing: -2px; 
    color: rgba(255, 255, 255, 0.2); 
    -webkit-text-stroke: 0;
    z-index: 3; margin-top: -0.1em; padding-top: 5px;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.text-accion.scroll-active {
    color: #ffffff; 
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    animation: pulseGlow 6s ease-in-out infinite;
}

.text-accion:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
    font-size: 0.95rem; color: #d1d5db; 
    font-weight: 300; margin-bottom: 25px;
    letter-spacing: 0.5px; max-width: 500px;
    margin-top: 15px; padding: 0 10px; 
}

.play-badge {
    display: inline-block; color: #ffffff; background: var(--naranja); 
    padding: 2px 10px; border-radius: 4px; font-weight: 900; 
    font-family: 'Inter', sans-serif; margin-left: 5px;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5); transform: translateY(-1px);
    animation: playPulse 4.5s ease-in-out infinite;
}

.whatsapp-btn-hero {
    background-color: #25d366; color: white !important; padding: 15px 35px;
    border-radius: 50px; text-decoration: none; font-weight: bold;
    display: inline-flex; align-items: center; gap: 10px; transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5); font-size: 1.1rem; border: 2px solid transparent;
}
.whatsapp-btn-hero:hover { transform: scale(1.05); background-color: #1ebe57; }

@media (min-width: 992px) {
    .hero-content { padding: 0 20px; } 
    .brand-title-container { flex-direction: row; gap: 15px; align-items: center; width: auto; }
    .text-ritmo, .text-accion { margin-top: 0; }
    .hero-text-base { font-size: 4.5rem; letter-spacing: -3px; width: auto; }
    .text-accion { padding-top: 0; }
}

@media (max-width: 480px) {
    .hero-text-base { font-size: 13vw; letter-spacing: -2px; }
    .hero-content { padding: 0 10px; }
    .stage-beam { opacity: 0.2; filter: blur(8px); }
}

/* --- SECCIONES --- */
.laptop-section { 
    padding: 60px 20px 100px 20px; 
    text-align: center; 
    position: relative;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.5) 0%, rgba(19, 17, 41, 0.3) 100%);
}
.laptop-section h2 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, var(--naranja) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
}
.laptop-section p {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 500;
}
.laptop-container { 
    width: 100%; 
    max-width: 500px; 
    margin: 0 auto 50px auto; 
    animation: float 6s ease-in-out infinite; 
    position: relative;
}
.laptop-lid { 
    background: linear-gradient(135deg, #1a1a1d 0%, #232328 100%);
    border-radius: 16px 16px 0 0; 
    padding: 12px; 
    border: 1px solid rgba(255,255,255,0.15);
    border-bottom: none; 
    box-shadow: 0 15px 50px rgba(0,0,0,0.8), inset 0 1px 1px rgba(255,255,255,0.1);
    aspect-ratio: 16/10; 
    position: relative;
    background: linear-gradient(135deg, #1a1a1d 0%, #232328 100%);
}
.laptop-base { 
    height: 14px; 
    background: linear-gradient(to bottom, #3f3f46, #1a1a1a);
    border-radius: 0 0 12px 12px; 
    width: 100%; 
    box-shadow: 0 12px 30px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.1);
}
.laptop-screen { 
    background: linear-gradient(135deg, #0f1115 0%, #1a1820 100%);
    width: 100%; 
    height: 100%; 
    border-radius: 6px; 
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}
.screen-header { height: 22px; background: #222; display: flex; gap: 6px; padding: 0 10px; align-items: center; border-bottom: 1px solid #333; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.bg-red { background: #ff5f56; } .bg-yellow { background: #ffbd2e; } .bg-green { background: #27c93f; }
.dj-interface { flex: 1; display: flex; padding: 15px; gap: 10px; justify-content: space-between; align-items: center; background: #121212; }
.deck { flex: 1; background: #1e1e1e; border-radius: 6px; border: 1px solid #333; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; aspect-ratio: 1/1; }
.vinyl-disk { width: 88%; height: 88%; border-radius: 50%; background: radial-gradient(circle, #111 0%, #111 20%, #222 21%, #111 22%, #111 100%), repeating-radial-gradient(#222 0, #222 1px, #050505 2px, #050505 3px); border: 1px solid #333; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.6); position: relative; }
.vinyl-reflection-layer { position: absolute; inset: 0; border-radius: 50%; background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 45%, transparent 55%, rgba(255,255,255,0.05) 100%); pointer-events: none; }
.disk-label { width: 32%; height: 32%; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); z-index: 2; }
.mixer { width: 30px; display: flex; flex-direction: column; justify-content: space-evenly; align-items: center; gap: 10px; }
.slider { width: 4px; height: 50px; background: #333; position: relative; border-radius: 2px; }
.knob { width: 12px; height: 6px; background: #888; position: absolute; left: -4px; top: 50%; border-radius: 1px; box-shadow: 0 1px 2px black; }
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.animate-spin-real { animation: spin 6s linear infinite; }
.reverse { animation-direction: reverse; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 12px 30px rgba(255, 140, 0, 0.6);
        transform: translateY(-2px);
    }
}

/* --- GRID CAMPAÑAS --- */
.section-padding { padding: 80px 5%; }

/* Sección Campañas: Fondo Premium */
#campanas {
    background: linear-gradient(135deg, #0a0914 0%, #131129 50%, #0a0914 100%) !important;
    position: relative;
    overflow: hidden;
}

#campanas::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 191, 255, 0.08) 0%, transparent 35%);
    pointer-events: none;
    z-index: 0;
}

#campanas .section-title {
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease-out;
}

#contenedor-campanas {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
    position: relative;
    z-index: 1;
}

/* EFECTO SCROLL STACKING EN MÓVIL */
@media (max-width: 640px) {
    #contenedor-campanas {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        position: relative;
        height: auto;
    }
    
    .promo-card {
        position: sticky;
        top: 100px;
        transition: all 0.3s ease;
    }
    
    /* Primera tarjeta visible desde el inicio */
    .promo-card:nth-child(1) {
        z-index: 10;
        top: 20px;
    }
    
    /* Tarjetas 2, 3, 4 ocultas inicialmente */
    .promo-card:nth-child(n+2) {
        opacity: 0;
        transform: translateY(30px);
        pointer-events: none;
    }
    
    /* Cuando las tarjetas se revelan por scroll, aparecen */
    .promo-card.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    /* Cada tarjeta superior al hacer scroll */
    .promo-card:nth-child(2).visible {
        z-index: 9;
        top: 60px;
    }
    
    .promo-card:nth-child(3).visible {
        z-index: 8;
        top: 100px;
    }
    
    .promo-card:nth-child(4).visible {
        z-index: 7;
        top: 140px;
    }
    
    /* Efecto de entrada suave */
    .promo-card {
        animation: none;
    }
}

.promo-card { 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.92) 100%);
    color: #0a0914; 
    border-radius: 20px;
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    width: 100% !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    transform: translateY(0) scale(1);
    opacity: 0;
    animation: slideInUp 0.6s ease-out forwards;
}

.promo-card:nth-child(1) { animation-delay: 0.1s; }
.promo-card:nth-child(2) { animation-delay: 0.2s; }
.promo-card:nth-child(3) { animation-delay: 0.3s; }
.promo-card:nth-child(4) { animation-delay: 0.4s; }

.card,
.promo-card {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card:hover,
.promo-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 100px rgba(255, 140, 0, 0.25), 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 140, 0, 0.5);
}

.promo-image-container { 
    position: relative; width: 100%; 
    height: 220px !important; 
    overflow: hidden;
    background: linear-gradient(135deg, #111, #222);
}
.promo-image-container img { 
    width: 100%; height: 100%; object-fit: cover; 
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    filter: brightness(1);
}
.promo-card:hover .promo-image-container img {
    transform: rotate(2deg);
    filter: brightness(1.1);
}
.promo-badge { 
    position: absolute; bottom: 12px; left: 12px; 
    background: linear-gradient(135deg, var(--naranja) 0%, #ff6b00 100%); 
    color: white; padding: 8px 16px; 
    font-weight: bold; font-size: 0.85rem; 
    border-radius: 30px; 
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: badgePulse 3s ease-in-out infinite;
}
.promo-content { 
    padding: 24px; 
    text-align:ø left; 
    flex: 1;
    display: flex;
    flex-direction: column;
}
.promo-content h3 {
    margin: 0 0 12px 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a0914;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.3px;
}
.promo-desc {
    margin: 0 0 15px 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}
.btn-oferta { 
    display: inline-block;
    padding: 12px 24px; 
    border: 2px solid var(--naranja); 
    border-radius: 25px; 
    color: var(--naranja); 
    background: transparent;
    text-decoration: none; 
    font-weight: bold; 
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-oferta:hover { 
    background: var(--naranja);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.35);
}

@media (max-width: 900px) {
    .section-title { font-size: 2.5rem; margin-bottom: 40px; }
    .gallery-grid-mixed, #full-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; grid-auto-rows: 240px; }
}
@media (max-width: 600px) {
    #contenedor-campanas { grid-template-columns: 1fr !important; gap: 18px !important; }
    .promo-card { border-radius: 16px; }
    .promo-image-container { height: 200px !important; }
    .section-title { font-size: 2rem; margin-bottom: 30px; }
    .section-padding { padding: 60px 5%; }
    .laptop-section { padding: 40px 15px 80px 15px; margin-top: -40px; }
    .gallery-grid-mixed, #full-gallery-grid { grid-template-columns: 1fr; gap: 12px; grid-auto-rows: 220px; }
    #grid-servicios > div { padding: 30px !important; }
    .contact-icons-container { gap: 50px; }
}

.grid-container { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 32px; 
    max-width: 1200px; 
    margin: 0 auto;
}

#grid-servicios > div {
    padding: 40px !important;
    box-sizing: border-box !important;
    border-radius: 20px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    transform: translateY(0) scale(1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: slideInUp 0.7s ease-out forwards;
}

#grid-servicios > div:nth-child(1) { animation-delay: 0.1s; }
#grid-servicios > div:nth-child(2) { animation-delay: 0.2s; }
#grid-servicios > div:nth-child(3) { animation-delay: 0.3s; }
#grid-servicios > div:nth-child(4) { animation-delay: 0.4s; }
#grid-servicios > div:nth-child(5) { animation-delay: 0.5s; }

#grid-servicios > div::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

#grid-servicios > div:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 60px rgba(255, 140, 0, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 140, 0, 0.4);
}

#grid-servicios > div:hover::before {
    opacity: 1;
}

#grid-servicios > div > div:first-child {
    margin-bottom: 20px !important; 
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    z-index: 2;
}

#grid-servicios > div > div:first-child i {
    font-size: 3.5rem;
    color: var(--naranja);
    text-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
    transition: all 0.4s ease;
}

#grid-servicios > div:hover > div:first-child i {
    transform: scale(1.15) rotate(-5deg);
    text-shadow: 0 12px 30px rgba(255, 140, 0, 0.5);
}

#grid-servicios h3 {
    color: white;
    font-size: 1.6rem;
    margin: 0 0 12px 0;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

#grid-servicios ul, #grid-servicios p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

#grid-servicios ul {
    padding-left: 20px;
    margin: 15px 0;
}

#grid-servicios li {
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

#grid-servicios li:hover {
    color: var(--naranja);
    padding-left: 5px;
}
.blog-modal-content { 
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    width: 90%; 
    max-width: 700px; 
    padding: 40px; 
    border-radius: 20px; 
    position: relative; 
    color: #0a0914; 
    max-height: 80vh; 
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.blog-header h2 { margin: 0 0 15px 0; color: #0a0914; font-size: 2.4rem; font-weight: 700; font-family: 'Playfair Display', serif; letter-spacing: 0.5px; }
.blog-body-text { line-height: 1.8; font-size: 1.05rem; color: #444; }
.blog-body-text p { margin-bottom: 18px; }

.gallery-grid-mixed, #full-gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 18px; 
    max-width: 1200px; 
    margin: 0 auto;
    grid-auto-rows: 280px;
}

.gallery-card { 
    position: relative; 
    border-radius: 16px; 
    overflow: hidden; 
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    cursor: pointer; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transform: scale(1) translateY(0);
    opacity: 0;
    animation: slideInUp 0.6s ease-out forwards;
}

.gallery-card:nth-child(1) { animation-delay: 0.05s; }
.gallery-card:nth-child(2) { animation-delay: 0.1s; }
.gallery-card:nth-child(3) { animation-delay: 0.15s; }
.gallery-card:nth-child(4) { animation-delay: 0.2s; }
.gallery-card:nth-child(5) { animation-delay: 0.25s; }
.gallery-card:nth-child(6) { animation-delay: 0.3s; }
.gallery-card:nth-child(7) { animation-delay: 0.35s; }
.gallery-card:nth-child(8) { animation-delay: 0.4s; }
.gallery-card:nth-child(9) { animation-delay: 0.45s; }

.gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.4) 0%, rgba(0, 191, 255, 0.2) 100%);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    opacity: 0;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.gallery-media { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    display: block;
}

.gallery-card:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 25px 60px rgba(255, 140, 0, 0.25), 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 140, 0, 0.3);
}

.gallery-card:hover .gallery-media {
    transform: scale(1.12);
    filter: brightness(1.15) contrast(1.1);
}

.gallery-card:hover::after {
    opacity: 1;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.gallery-card:hover::before {
    opacity: 1;
}

.gallery-fade { opacity: 0; transform: scale(1.02); transition: opacity 0.6s ease, transform 0.6s ease; }
.gallery-fade.loaded { opacity: 1; transform: scale(1); }

.reveal-item { 
    opacity: 0; 
    transform: translateY(24px); 
    transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal-item.visible { 
    opacity: 1; 
    transform: translateY(0);
}

/* Lightbox & Modals */
.lightbox { 
    position: fixed; 
    top: 0; left: 0; 
    width: 100%; 
    height: 100dvh; 
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10000; 
    display: none; 
    justify-content: center; 
    align-items: center; 
    overscroll-behavior: contain;
    animation: fadeInOverlay 0.4s ease;
}
.lightbox.show { display: flex; }

@keyframes fadeInOverlay {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(5px);
    }
}

.lightbox-content-wrapper { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; 
    height: 100%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    pointer-events: none; 
    z-index: 10001;
}
#lightbox-media-container { 
    position: relative; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    pointer-events: auto; 
    max-width: 100%; 
    max-height: 100%;
}
.lightbox-media { 
    max-width: 90vw; 
    max-height: 85dvh; 
    width: auto; 
    height: auto; 
    object-fit: contain; 
    display: block; 
    box-shadow: 0 15px 50px rgba(0,0,0,0.7); 
    border-radius: 8px;
    animation: scaleIn 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-lightbox { 
    position: absolute; 
    top: 20px; 
    right: 30px; 
    font-size: 40px; 
    color: white; 
    cursor: pointer; 
    z-index: 10002; 
    background: rgba(255, 140, 0, 0.2);
    padding: 5px 15px; 
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 140, 0, 0.3);
}
.close-lightbox:hover {
    background: rgba(255, 140, 0, 0.4);
    border-color: var(--naranja);
    transform: rotate(90deg);
}

.service-modal-content { width: 90%; max-width: 1100px; height: 85vh; background: #0a0914; position: relative; border-radius: 15px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.8); border: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; }
.service-modal-content iframe { width: 100%; height: 100%; border: none; display: block; }
#close-service-modal { display: none !important; }

/* Utilidades */
.footer { padding: 50px 5%; text-align: center; color: #999; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.95rem; }
.section-title { 
    font-size: 3.5rem; 
    background: linear-gradient(135deg, #ffffff 0%, var(--naranja) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center; 
    margin-bottom: 50px; 
    word-wrap: break-word; 
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: none;
    animation: fadeInDown 0.8s ease-out;
}
.dark-alt { background-color: var(--fondo-alt); }
.btn-outline-visible { 
    display: inline-block; 
    padding: 16px 40px; 
    background: linear-gradient(135deg, var(--naranja) 0%, #ff6b00 100%);
    border: none; 
    color: white; 
    text-decoration: none; 
    font-weight: 900; 
    font-size: 1.1rem; 
    letter-spacing: 1.5px; 
    border-radius: 50px; 
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-outline-visible::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 0;
}

.btn-outline-visible:hover::before {
    transform: translateX(100%);
}

.btn-outline-visible:hover { 
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 18px 45px rgba(255, 140, 0, 0.5);
}
.btn-outline-visible { animation: ctaPulse 7s ease-in-out infinite; }

@keyframes ctaPulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 140, 0, 0.35); }
    50% { transform: scale(1.02); box-shadow: 0 10px 28px rgba(255, 140, 0, 0.5); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 140, 0, 0.35); }
}

.testimonial-note {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
    color: #666;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.6;
    animation: fadeInDown 0.8s ease-out 0.2s backwards;
}

.check-icon {
    margin-right: 8px;
    color: var(--naranja);
    font-weight: 700;
}

/* Contacto */
.contact-icons-container { 
    display: flex; 
    justify-content: center; 
    gap: 80px; 
    flex-wrap: wrap; 
    margin-top: 40px;
}
.contact-icon-link { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
    position: relative;
}
.contact-icon-link i { 
    font-size: 5.5rem;
    transition: all 0.4s ease;
}
.contact-icon-link::before {
    content: "";
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.contact-icon-link:hover::before {
    opacity: 1;
}
.contact-icon-link.whatsapp i { color: #25D366; }
.contact-icon-link.email i { color: var(--naranja); }
.contact-icon-link.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.contact-icon-link:hover i { 
    transform: scale(1.2) rotate(-8deg);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

.bg-lila { 
    background: linear-gradient(135deg, #FFF5E1 0%, #fff9f0 100%);
    color: #0a0914;
    position: relative;
    padding: 80px 5% !important;
}
.bg-lila::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 140, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.bg-lila .section-title { 
    color: #0a0914;
    text-shadow: none;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}
.bg-lila > * {
    position: relative;
    z-index: 1;
}

.whatsapp-vinyl-btn { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    z-index: 9000; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    filter: drop-shadow(0 8px 20px rgba(37, 211, 102, 0.3));
    background: transparent;
    border: none;
}
.whatsapp-vinyl-btn:hover { 
    transform: scale(1.15);
    filter: drop-shadow(0 12px 30px rgba(37, 211, 102, 0.5));
}
.vinyl-outer {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #0b0b0b 0%, #0b0b0b 55%, #000 100%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 6s linear infinite;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    position: relative;
}
.whatsapp-vinyl-btn .vinyl-reflection { display: none; }
.vinyl-reflection { 
    position: absolute; 
    inset: 0; 
    border-radius: 50%; 
    background: linear-gradient(45deg, rgba(255,255,255,0.2) 0%, transparent 40%, transparent 100%); 
    pointer-events: none; 
    z-index: 2;
}
.vinyl-label.wa-label { 
    width: 50px; 
    height: 50px; 
    background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4); 
    z-index: 1; 
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.whatsapp-icon { width: 100%; height: 100%; fill: white; }

.whatsapp-vinyl-btn:focus,
.whatsapp-vinyl-btn:active { 
    outline: none; 
    box-shadow: none; 
    background: transparent; 
}

@keyframes vinylPulse {
    0% { box-shadow: 0 0 14px rgba(37, 211, 102, 0.15); transform: scale(1); }
    50% { box-shadow: 0 0 22px rgba(37, 211, 102, 0.3); transform: scale(1.02); }
    100% { box-shadow: 0 0 14px rgba(37, 211, 102, 0.15); transform: scale(1); }
}

@keyframes vinylPulseMobile {
    0% { box-shadow: 0 0 10px rgba(37, 211, 102, 0.14); transform: scale(1); }
    50% { box-shadow: 0 0 16px rgba(37, 211, 102, 0.26); transform: scale(1.015); }
    100% { box-shadow: 0 0 10px rgba(37, 211, 102, 0.14); transform: scale(1); }
}

@media (max-width: 768px) {
    .brand-title-container h1 { font-size: 5rem; }
    .gallery-grid-mixed, #full-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .vinyl-outer { width: 68px; height: 68px; }
    .vinyl-label.wa-label { width: 40px; height: 40px; padding: 8px; }
    .whatsapp-vinyl-btn { filter: none; background: transparent; animation: none; box-shadow: none; }
    .whatsapp-vinyl-btn:focus-visible { outline: none; box-shadow: none; background: transparent; }
    .vinyl-outer { box-shadow: 0 0 18px rgba(37, 211, 102, 0.35), 0 12px 30px rgba(0, 0, 0, 0.35); animation: spin 6s linear infinite, vinylPulseMobile 2.5s ease-in-out infinite; }
    .contact-icons-container { gap: 40px; }
    .contact-icon-link i { font-size: 4.5rem; }
    .laptop-section { margin-top: -60px; }
    .whatsapp-vinyl-btn .vinyl-outer { animation: spin 6s linear infinite, vinylPulseMobile 2.5s ease-in-out infinite; }
    .marquee-item img { height: 100px; }
    .section-title { font-size: 2.3rem; }
}

@media (max-width: 640px) {
    .whatsapp-vinyl-btn { 
        bottom: 20px; 
        right: 20px;
    }
    .vinyl-outer {
        width: 60px;
        height: 60px;
    }
    .vinyl-label.wa-label { 
        width: 36px; 
        height: 36px; 
        padding: 6px;
    }
    
    /* EFECTO SCROLL STACKING PARA BLOG EN MÓVIL */
    .grid-container {
        grid-template-columns: 1fr !important;
        position: relative;
    }
    
    .grid-container .promo-card {
        position: sticky;
        top: 100px;
        transition: all 0.3s ease;
    }
    
    .grid-container .promo-card:nth-child(1) {
        z-index: 10;
        top: 20px;
    }
    
    .grid-container .promo-card:nth-child(n+2) {
        opacity: 0;
        transform: translateY(30px);
        pointer-events: none;
    }
    
    .grid-container .promo-card.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .grid-container .promo-card:nth-child(2).visible {
        z-index: 9;
        top: 60px;
    }
    
    .grid-container .promo-card:nth-child(3).visible {
        z-index: 8;
        top: 100px;
    }
}

@media (max-width: 1024px) {
    .service-modal-content { position: fixed !important; top: 0 !important; left: 0 !important; bottom: 0 !important; right: 0 !important; width: 100% !important; height: 100% !important; max-width: none !important; max-height: none !important; border-radius: 0 !important; border: none !important; margin: 0 !important; }
}

body.iframe-mode { background: transparent !important; overflow-y: auto; }
body.iframe-mode .navbar { position: absolute; top: 0; left: 0; width: 100%; background: transparent; border: none; backdrop-filter: none; padding: 10px; z-index: 10; }
body.iframe-mode .logo-container { transform: scale(0.8); }
body.iframe-mode .hero { height: 35vh !important; min-height: 250px !important; }
body.iframe-mode .hero-text-base { font-size: 2.2rem !important; }
body.iframe-mode .section-padding { padding: 30px 5%; }
body.iframe-mode .footer { display: none; }

#full-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; max-width: 1200px; margin: 0 auto; }
.masonry-item { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 10px; cursor: pointer; opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; background: #222; }
.masonry-item.visible { opacity: 1; transform: translateY(0); }
.masonry-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

.lb-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); color: white; border: 2px solid rgba(255, 255, 255, 0.3); width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; cursor: pointer; z-index: 10005; transition: all 0.3s ease; }
.lb-nav-btn:hover { background: rgba(255, 255, 255, 0.2); border-color: var(--naranja); color: var(--naranja); scale: 1.1; }
.lb-prev { left: 30px; }
.lb-next { right: 30px; }
@media (max-width: 768px) { .lb-nav-btn { display: none; } }

@media (max-width: 500px) {
    .brand-title-container {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center;
        gap: -5px;
        width: 100%;
    }
    .hero-text-base {
        font-size: 16vw !important;
        line-height: 0.9 !important;
        width: 100%;
        text-align: center;
        margin: 0 !important;
        display: block;
    }
    .text-accion {
        font-size: 15vw !important; 
        padding-top: 5px;
    }
}

.iframe-mode .card {
    padding: 25px 8% !important;
    box-sizing: border-box !important;
    width: 100% !important;
    overflow: hidden !important; 
}

.iframe-mode ul {
    padding-left: 25px !important;
    margin-right: 10px !important;
    box-sizing: border-box !important;
}

.iframe-mode li {
    margin-bottom: 15px !important;
}

.iframe-mode .btn-hero,
.iframe-mode button {
    display: inline-block !important;
    width: auto !important;
    min-width: 180px !important;
    padding: 14px 30px !important;
    background: linear-gradient(135deg, var(--naranja) 0%, #cc7000 100%) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    text-align: center !important;
    border: none !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    margin-top: 15px !important;
    letter-spacing: 0.5px !important;
}

.iframe-mode .btn-hero:hover,
.iframe-mode button:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6) !important;
    background: linear-gradient(135deg, #ffaa33 0%, var(--naranja) 100%) !important;
}

.iframe-mode .card {
    overflow: visible !important;
}

#grid-servicios > div {
    padding: 35px 30px !important;
    box-sizing: border-box !important;
    border-radius: 12px;
}

#grid-servicios > div > div:first-child {
    margin-bottom: 20px !important; 
    display: inline-block;
}

/* =========================================
   MARQUEE (CARRUSEL) LOGOS BODAS.NET
   ========================================= */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0 50px 0;
    background: transparent;
    /* Efecto desvanecido en los bordes */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    /* Ajusta la velocidad cambiando 30s */
    animation: scrollBadges 30s linear infinite; 
    align-items: center;
    gap: 30px;
}

/* Pausa suave al pasar el ratón (opcional) */
.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex: 0 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-item img {
    height: 120px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    display: block;
    filter: drop-shadow(0 6px 15px rgba(0,0,0,0.15)) brightness(0.95);
}

.marquee-item img:hover {
    transform: scale(1.12) rotate(3deg);
    filter: drop-shadow(0 12px 25px rgba(0,0,0,0.25)) drop-shadow(0 0 15px rgba(255,140,0,0.25)) brightness(1.1);
}

/* CORRECCIÓN: Hace que el logo cuadrado (JPG) sea un círculo perfecto */
.badge-round {
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

@keyframes scrollBadges {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Se mueve la mitad (el set original) */
}