/* --- CONFIGURACIÓN, VARIABLES Y RESET --- */
:root {
    --bg-dark: #6593A6;      
    --card-bg: rgba(26, 32, 53, 0.65); 
    --accent-color: #00f2fe; 
    --text-light: #ffffff;
    --text-muted: #a0aec0;
    --fb-color: #1877F2; 
}
html {
    scroll-behavior: smooth;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden; /* <-- AGREGA ESTA LÍNEA AQUÍ */
}

/* --- ENCABEZADO Y ONDAS --- */
.main-header {
    background-image: url('frente1.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
 
    z-index: 10; 
    
    min-height: 400px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.60); 
    z-index: 1; 
}

.main-header .header-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column; /* Apila el logo arriba y el menú abajo */
    align-items: center;
    justify-content: center;
    gap: 35px; /* Espacio estético entre el logo y el menú */
    padding: 30px 5% 50px 5%; 
    max-width: 1250px; 
    margin: 0 auto;    
    width: 100%;
}

.brand-container {
    width: 100%;
    max-width: 900px; /* Controla qué tan grande quieres que sea el logo como máximo en PC */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0; 
}
.logo {
    width: 100%;
    max-width: 1100px;
    height: auto; 
    display: block;
    margin: 0 auto;
    border-radius: 8px; 
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.6));
}

.site-title {
    font-size: 38px; 
    font-weight: 800; 
    letter-spacing: 0.5px;
    text-transform: uppercase; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* --- NAVEGACIÓN Y ENLACES --- */
.menu-checkbox {
    display: none;
}

.menu-icon {
    display: none; /* Oculto por defecto en PC */
    cursor: pointer;
    color: var(--text-light);
    z-index: 100;
    transition: transform 0.3s ease;
}

.menu-icon:hover {
    color: var(--accent-color);
}

.main-nav {
    background: rgba(22, 27, 51, 0.45); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 15px 8px 25px;
    border-radius: 50px; 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.nav-links { 
    list-style: none; 
    display: flex; 
    gap: 15px; 
    align-items: center;
    justify-content: center;
    width: 100%;
}

.nav-links a {
    color: var(--text-light); 
    text-decoration: none; 
    font-size: 15px;
    font-weight: 600; 
    letter-spacing: 0.5px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap; 
    text-align: center;
}

.nav-links .contacto-right {
    margin-left: auto; 
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--accent-color); 
    background: rgba(255, 255, 255, 0.08);
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
}

.special-link {
    background-color: rgba(0, 242, 254, 0.15) !important;
    padding: 10px 22px !important;
    border-radius: 30px !important;
    border: 1px solid var(--accent-color) !important;
    color: var(--accent-color) !important;
    font-weight: 700 !important;
    margin-left: 5px;
    white-space: nowrap !important; 
    text-align: center;
}

.special-link:hover {
    background-color: var(--accent-color) !important;
    color: var(--bg-dark) !important;
    text-shadow: none !important;
    box-shadow: 0 0 15px var(--accent-color);
}

/* --- ONDAS ANIMADAS --- */
.wave-container {
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    height: 120px; 
    z-index: 2; 
}

.waves {
    width: 100%; 
    height: 100%; 
    margin-bottom: -7px; 
}

.parallax > use { 
    animation: move-wave 25s cubic-bezier(.55,.5,.45,.5) infinite; 
}
.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes move-wave {
    0% { transform: translate3d(-90px,0,0); }
    100% { transform: translate3d(85px,0,0); }
}

/* --- SECCIÓN CENTRAL Y TARJETAS --- */
.main-content {
    padding: 20px 5% 60px 5%; 
    display: flex; 
    flex-direction: column; 
    align-items: center;
    background: var(--bg-dark); 
    position: relative;
    z-index: 5;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch; 
    width: 100%;
    max-width: 1100px; 
    margin-bottom: 40px;
}

.right-column {
    flex: 1;
    min-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Glassmorphic Cards */
.player-card, .video-card, .about-card, .facebook-card {
    flex: 1; 
    min-width: 340px;
    background: var(--card-bg); 
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px; 
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.right-column .video-card, 
.right-column .facebook-card {
    flex: unset; 
}

.player-card:hover, .video-card:hover, .about-card:hover, .facebook-card:hover {
    transform: translateY(-5px);
}

/* --- REPRODUCTOR PRINCIPAL --- */
.player-card { text-align: center; justify-content: flex-start; }
.player-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }

.badge-live {
    background: rgba(231, 76, 60, 0.15); color: #ff4d4d;
    padding: 5px 12px; border-radius: 20px; font-size: 11px;
    font-weight: 700; letter-spacing: 1px; display: flex; align-items: center; gap: 6px;
    border: 1px solid rgba(231, 76, 60, 0.25);
}

.live-dot {
    width: 8px; height: 8px; background-color: #ff4d4d; border-radius: 50%;
    animation: blink 1.2s infinite;
}

@keyframes blink { 0% { opacity: 0.4; } 50% { opacity: 1; } 100% { opacity: 0.4; } }

.station-dial { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; }
.audio-info h2 { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.track-title { color: var(--text-muted); font-size: 14px; margin-bottom: 30px; }

.iframe-player-container {
    width: 100%; background: rgba(0, 0, 0, 0.4); border-radius: 15px; overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15), inset 0 0 10px rgba(0,0,0,0.6);
    padding: 10px; border: 1px solid rgba(0, 242, 254, 0.2);
}

/* --- REPRODUCTOR MP4 --- */
.video-card { justify-content: flex-start; }
.media-header { display: flex; align-items: center; gap: 15px; width: 100%; margin-bottom: 25px; }
.media-icon { width: 45px; height: 45px; color: var(--accent-color); background: rgba(0, 242, 254, 0.1); padding: 10px; border-radius: 50%; }
.media-text h3 { font-size: 18px; font-weight: 700; color: var(--text-light); margin-bottom: 4px; }
.media-text p { font-size: 13px; color: var(--text-muted); }

.video-wrapper {
    width: 100%; border-radius: 12px; overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.05); background: #000;
}
.custom-video { width: 100%; display: block; outline: none; border-radius: 12px; }

/* --- FACEBOOK CARD --- */
/* --- FACEBOOK CARD --- */
.facebook-card { align-items: center; text-align: center; }
.fb-header { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 25px; width: 100%; }
.fb-icon { width: 35px; height: 35px; color: var(--fb-color); filter: drop-shadow(0 0 10px rgba(24, 119, 242, 0.5)); }
.fb-header h2 { font-size: 20px; font-weight: 700; }

.mt-20 { margin-top: 20px; }

/* Contenedor limpio para la lista de enlaces */
.fb-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
}

/* Botón Principal Mejorado */
.fb-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 25px; 
    background-color: var(--fb-color); 
    color: var(--text-light);
    text-decoration: none; 
    font-size: 15px; 
    font-weight: 600; 
    border-radius: 50px; 
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4); 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%; 
    max-width: 340px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fb-btn:hover { 
    background-color: #166fe5; 
    transform: translateY(-3px); /* Movimiento más elegante */
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.6); 
}

/* NUEVO: Botón Secundario (Ideal para la lista de enlaces) */
.fb-btn-secondary {
    background-color: rgba(24, 119, 242, 0.15); /* Fondo azul semitransparente */
    box-shadow: none;
    border: 1px solid var(--fb-color); /* Borde azul */
}

.fb-btn-secondary:hover {
    background-color: var(--fb-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.fb-promo-image {
    width: 100%; height: auto; border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); border: 1px solid rgba(255, 255, 255, 0.1);
    display: block; object-fit: cover;
}

/* --- BANNER PROMOCIONAL JUBILEO --- */
.promo-banner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 242, 254, 0.2);
}

.promo-image-container {
    position: relative;
    width: 100%;
    height: 450px; 
    overflow: hidden;
    border-radius: 20px;
}

.promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.promo-image-container:hover .promo-img {
    transform: scale(1.08);
}

.promo-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(22, 27, 51, 0.95) 0%, rgba(22, 27, 51, 0.4) 50%, rgba(22, 27, 51, 0) 100%);
    display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
    padding: 50px 20px; opacity: 0; transition: opacity 0.4s ease;
}

.promo-image-container:hover .promo-overlay {
    opacity: 1;
}

.promo-overlay h3 {
    font-size: 32px; color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px; text-transform: uppercase; text-align: center;
    transform: translateY(30px); transition: transform 0.4s ease;
}

.promo-btn {
    padding: 12px 30px; background: rgba(0, 242, 254, 0.15);
    color: var(--accent-color); border: 2px solid var(--accent-color);
    border-radius: 30px; text-decoration: none; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    transform: translateY(30px); transition: all 0.4s ease;
}

.promo-btn:hover {
    background: var(--accent-color); color: var(--bg-dark);
    box-shadow: 0 0 15px var(--accent-color);
}

.promo-image-container:hover .promo-overlay h3,
.promo-image-container:hover .promo-btn {
    transform: translateY(0);
}

/* --- VISIÓN Y MISIÓN --- */
.about-card { text-align: left; justify-content: flex-start; }
.about-card p { color: var(--text-muted); line-height: 1.7; font-size: 15.5px; }
.about-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; width: 100%; }
.about-icon {
    width: 42px; height: 42px; color: var(--accent-color);
    background: rgba(0, 242, 254, 0.1); padding: 8px; border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.3)); flex-shrink: 0;
}
.about-header h2 { font-size: 22px; font-weight: 700; color: var(--text-light); letter-spacing: 0.5px; }

/* Separador Neon */
.section-divider {
    display: flex; align-items: center; text-align: center; width: 100%; max-width: 1100px; margin: 10px 0 35px 0;
}
.section-divider::before, .section-divider::after {
    content: ''; flex: 1; border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.section-divider:not(:empty)::before { margin-right: 1.5em; }
.section-divider:not(:empty)::after { margin-left: 1.5em; }
.section-divider span {
    font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-light); text-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

/* Pilares */
.pillars-container {
    display: flex; gap: 30px; justify-content: center; width: 100%; max-width: 1100px; margin-bottom: 50px; flex-wrap: wrap;
}
.pillar-item {
    flex: 1; min-width: 280px; background: var(--card-bg); border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px; padding: 35px 25px; display: flex; flex-direction: column; align-items: center; text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    transition: transform 0.3s ease;
}
.pillar-item:hover { transform: translateY(-5px); }
.pillar-icon-wrapper {
    width: 65px; height: 65px; background: rgba(0, 242, 254, 0.08); border: 2px solid var(--accent-color);
    border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-bottom: 22px;
    color: var(--accent-color); box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}
.pillar-icon-wrapper svg { width: 30px; height: 30px; }
.pillar-item p { font-size: 14.5px; color: var(--text-light); line-height: 1.6; font-weight: 600; }

.extra-content { text-align: center; max-width: 600px; color: var(--text-muted); line-height: 1.6; margin-bottom: 40px; margin-top: 40px; }
.extra-content h3 { color: var(--text-light); margin-bottom: 10px; }

/* =========================================
   BOTÓN FLOTANTE "VOLVER ARRIBA"
   ========================================= */
.btn-flotante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--bg-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-flotante:hover {
    transform: scale(1.15);
    background-color: var(--text-light);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.btn-flotante svg {
    width: 24px;
    height: 24px;
}

/* =========================================
   SECCIÓN DE COLABORACIÓN ECONÓMICA (PARALLAX)
   ========================================= */
.donation-parallax-bg {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 242, 254, 0.2);
    background-image: url('colabora.jpeg');
    background-attachment: fixed; 
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.donation-parallax-bg:hover {
    transform: translateY(-3px);
}

.donation-card-overlay {
    width: 100%;
    height: 100%;
    padding: 50px 40px;
    background: rgba(16, 21, 43, 0.82); 
    backdrop-filter: blur(4px); 
    -webkit-backdrop-filter: blur(4px);
    text-align: center;
}

.donation-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.donation-icon {
    width: 45px;
    height: 45px;
    color: #ff4757;
    background: rgba(255, 71, 87, 0.15);
    padding: 10px;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(255, 71, 87, 0.4));
}

.donation-card-overlay > p {
    color: #e2e8f0; 
    font-size: 16.5px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.donation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.bank-info {
    background: rgba(0, 242, 254, 0.1); 
    border: 1px solid rgba(0, 242, 254, 0.3);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: left;
    backdrop-filter: blur(10px);
}

.bank-info h3 {
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.bank-info p {
    font-size: 14.5px;
    color: var(--text-light);
    margin-bottom: 4px;
} 

/* =========================================
   EFECTO DE FONDO ESPECIAL - REPRODUCTOR EN VIVO
   ========================================= */
.player-bg-wrapper {
    position: relative;
    min-height: 65vh;
    width: 100%;
    padding: 0 !important; 
    background-image: url('fondorep.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    overflow: hidden;
    animation: bg-slow-zoom 20s infinite alternate ease-in-out;
}

@keyframes bg-slow-zoom {
    0% { background-size: 100% auto; }
    100% { background-size: 110% auto; }
}

.player-overlay {
    width: 100%;
    min-height: 65vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: radial-gradient(circle at center, rgba(22, 27, 51, 0.5) 0%, rgba(22, 27, 51, 0.88) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.special-glow-card {
    background: rgba(26, 32, 53, 0.85) !important;
    border: 1px solid rgba(0, 242, 254, 0.4) !important;
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.25), 0 20px 40px rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(15px);
    max-width: 450px;
    width: 100%;
    animation: floating-card 4s ease-in-out infinite;
}

@keyframes floating-card {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes radioPulse {
    0% { filter: drop-shadow(0 4px 12px rgba(0, 242, 254, 0.2)); transform: scale(1); }
    50% { filter: drop-shadow(0 4px 25px rgba(0, 242, 254, 0.8)); transform: scale(1.01); }
    100% { filter: drop-shadow(0 4px 12px rgba(0, 242, 254, 0.2)); transform: scale(1); }
}

.logo-pulsing {
    animation: radioPulse 2s infinite ease-in-out;
}

/* =========================================
   RESPONSIVIDAD Y MENÚ MÓVIL PLEGABLE
   ========================================= */
@media (max-width: 950px) {
    .header-content {
        flex-direction: column; 
        align-items: center;
        width: 100%;
        padding: 10px 0 !important; 
    }

    .brand-container {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
        padding: 0 5px !important; 
        margin: 35px auto 10px auto !important; 
    }

    .logo { 
        width: 100% !important;     
        max-width: 100% !important; 
        height: auto !important;    
        display: block !important;
    }
    
    .menu-icon {
        display: block !important; 
        position: absolute; 
        top: 25px;
        right: 20px;
        z-index: 1000;
        background: rgba(22, 27, 51, 0.6);
        padding: 5px;
        border-radius: 8px;
    }

    .donation-parallax-bg {
        background-attachment: scroll;
    }
    
    .donation-card-overlay {
        padding: 40px 20px;
    }

    .main-nav {
        position: absolute;
        top: 80px; /* Despliega el menú justo por debajo del botón de hamburguesa */
        left: 5%;
        width: 90%;
        background: rgba(22, 27, 51, 0.95); 
        backdrop-filter: blur(15px);
        border: 1px solid rgba(0, 242, 254, 0.2);
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.6);
        z-index: 999;
        padding: 0; 
        max-height: 0;
        overflow: hidden;
        /* SOLUCIÓN DE LA LÍNEA: 100% invisible al estar cerrado */
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, visibility 0.4s;
    }

    .menu-checkbox:checked ~ .main-nav {
        max-height: 700px;
        opacity: 1;
        visibility: visible;
        overflow-y: auto; 
    }

    .nav-links { 
        flex-direction: column;
        gap: 0; 
        padding: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 18px 20px;
        font-size: 18px;
        border-radius: 0; 
    }
    
.special-link {
        margin: 15px auto !important;
        display: block !important; /* Cambiado a block para un mejor control del botón */
        width: 85%; /* Aumentado ligeramente para darle más respiro al texto */
        white-space: normal !important; /* ¡ESTA ES LA SOLUCIÓN! Permite que el texto baje de línea */
        word-wrap: break-word; /* Previene que palabras extremadamente largas rompan el marco */
        line-height: 1.3 !important; /* Añade un espacio cómodo si el texto se divide en dos líneas */
        padding: 15px !important; /* Ajusta el relleno interno para que no quede muy pegado a los bordes */
    }

    .menu-checkbox:checked ~ .menu-icon {
        color: var(--accent-color);
        transform: rotate(90deg); 
    }

    .content-wrapper { 
        flex-direction: column; 
        align-items: center; 
    }
    
    .player-card, .video-card, .about-card, .facebook-card, .right-column { 
        width: 100%; 
        max-width: 500px; 
    }
    
    .section-divider span { 
        font-size: 16px; 
    }
    
    .pillars-container { 
        flex-direction: column; 
        align-items: center; 
    }
    
    .pillar-item { 
        width: 100%; 
        max-width: 500px; 
    }

    .promo-image-container {
        height: 300px;
    }
    
    .promo-overlay h3 {
        font-size: 22px;
    }
}