/* ============================================== */
/* PROGRAMA VACACIONAL SNTSS - INDEX */
/* CON PREFIJO pv- PARA EVITAR CONFLICTOS */
/* VERSIÓN SUAVE CON EFECTOS MÁGICOS */
/* ============================================== */

:root {
    /* ===== PALETA SUAVE DIVERTIDA ===== */
    --pv-morado-pastel: #B794F4;
    --pv-morado-suave: #9F7AEA;
    --pv-lila-pastel: #D6BCFA;
    --pv-azul-pastel: #90CDF4;
    --pv-azul-cielo: #BEE3F8;
    --pv-verde-pastel: #9AE6B4;
    --pv-verde-menta: #C6F6D5;
    --pv-turquesa-pastel: #76E4F7;
    --pv-fucsia-pastel: #FBB6CE;
    --pv-coral-suave: #FEB2B2;
    --pv-amarillo-pastel: #FAF089;
    
    /* Colores principales */
    --pv-primario: #9F7AEA;
    --pv-primario-oscuro: #805AD5;
    --pv-secundario: #90CDF4;
    --pv-secundario-oscuro: #63B3ED;
    --pv-terciario: #9AE6B4;
    --pv-terciario-oscuro: #68D391;
    --pv-acento: #FBB6CE;
    --pv-destacado: #FEB2B2;
    --pv-alerta: #FAF089;
    
    /* Neutros */
    --pv-blanco: #FFFFFF;
    --pv-blanco-hueso: #FAF9F6;
    --pv-gris-perla: #F8F9FA;
    --pv-gris-plata: #E9ECEF;
    --pv-texto-principal: #4A5568;
    --pv-texto-suave: #718096;
    
    /* Degradados */
    --pv-degrade-encabezado: linear-gradient(135deg, #baa3e7 0%, #9fd0ee 50%, #badbc6 100%);
    --pv-degrade-boton: linear-gradient(135deg, #B794F4 0%, #FBB6CE 100%);
    
    /* Sombras */
    --pv-sombra-pastel: 0 15px 35px rgba(159, 122, 234, 0.15);
    --pv-sombra-azul: 0 15px 35px rgba(144, 205, 244, 0.15);
}

/* ===== BASE ===== */
.pv-cultura-sntss-body {
    background: linear-gradient(135deg, var(--pv-gris-perla) 0%, var(--pv-blanco-hueso) 100%);
    min-height: 100vh;
    padding-top: 30px;
    padding-bottom: 50px;
    font-family: 'Segoe UI', 'Comic Sans MS', 'Chalkboard SE', sans-serif;
    position: relative;
    overflow-x: hidden;
}

/* ===== FONDO DE ESTRELLAS ===== */
.pv-fondo-estrellas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.pv-fondo-estrellas i {
    position: absolute;
    color: var(--pv-primario);
    opacity: 0.1;
    font-size: 1.5rem;
    animation: pv-flotarEstrellasFondo 15s linear infinite;
}

.pv-fondo-estrellas i:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.pv-fondo-estrellas i:nth-child(2) { top: 20%; right: 10%; animation-delay: 2s; }
.pv-fondo-estrellas i:nth-child(3) { bottom: 30%; left: 15%; animation-delay: 4s; }
.pv-fondo-estrellas i:nth-child(4) { bottom: 15%; right: 20%; animation-delay: 6s; }
.pv-fondo-estrellas i:nth-child(5) { top: 50%; left: 50%; animation-delay: 8s; }
.pv-fondo-estrellas i:nth-child(6) { top: 70%; left: 30%; animation-delay: 10s; }
.pv-fondo-estrellas i:nth-child(7) { top: 40%; right: 30%; animation-delay: 12s; }
.pv-fondo-estrellas i:nth-child(8) { bottom: 40%; left: 60%; animation-delay: 14s; }
.pv-fondo-estrellas i:nth-child(9) { top: 80%; right: 40%; animation-delay: 16s; }
.pv-fondo-estrellas i:nth-child(10) { bottom: 10%; left: 80%; animation-delay: 18s; }

/* ===== CONTENEDOR PRINCIPAL ===== */
.pv-contenedor-cultura-sntss {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 2.5rem;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: var(--pv-sombra-pastel);
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

/* EFECTO ESTRELLAS FLOTANTES */
.pv-contenedor-cultura-sntss::after {
    content: '\F586\F586\F586\F586\F586\F586\F586\F586';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: var(--pv-primario);
    font-size: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    padding: 30px;
    pointer-events: none;
    animation: pv-flotarEstrellas 20s linear infinite;
    opacity: 0.1;
    z-index: 0;
}

/* ===== ENCABEZADO ===== */
.pv-header-luxe {
    background: var(--pv-degrade-encabezado);
    padding: 2.5rem 2rem;
    border-radius: 40px;
    margin-bottom: 3rem;
    box-shadow: var(--pv-sombra-pastel);
    border: 3px solid rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

/* ESTRELLAS DEL ENCABEZADO - SEPARADAS */
.pv-estrella-1, .pv-estrella-2, .pv-estrella-3, .pv-estrella-4, .pv-estrella-5, .pv-estrella-6 {
    position: absolute;
    color: rgba(255, 255, 255, 0.5);
    font-size: 2rem;
    animation: pv-brillarEstrella 3s ease-in-out infinite;
    z-index: 2;
}

.pv-estrella-1 { top: 15px; left: 15px; animation-delay: 0s; }
.pv-estrella-2 { top: 25px; right: 80px; animation-delay: 0.7s; font-size: 1.8rem; }
.pv-estrella-3 { bottom: 25px; left: 120px; animation-delay: 1.2s; font-size: 1.6rem; }
.pv-estrella-4 { bottom: 15px; right: 25px; animation-delay: 1.8s; font-size: 2.2rem; }
.pv-estrella-5 { top: 45px; left: 200px; animation-delay: 2.3s; font-size: 1.5rem; }
.pv-estrella-6 { bottom: 45px; right: 150px; animation-delay: 2.8s; font-size: 1.7rem; }

.pv-titulo-comision {
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2rem;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1), 0 0 30px rgba(255, 255, 255, 0.5);
    margin: 0;
}

.pv-subtitulo-comision {
    color: white;
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 0.4rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

/* ===== LOGOS ===== */
.pv-logo-sntss, .pv-logo-cultura {
    height: 90px !important;
    width: auto;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
    transition: all 0.4s ease;
}

.pv-logo-sntss:hover, .pv-logo-cultura:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 8px 15px rgba(159, 122, 234, 0.3));
}

/* ===== TÍTULOS DE SECCIÓN ===== */
.pv-titulo-seccion {
    color: var(--pv-primario);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.pv-subtitulo-seccion {
    color: var(--pv-texto-suave);
    font-size: 1rem;
}

/* ===== CARDS DE DESCARGA ===== */
.pv-card-download {
    background: white;
    border-radius: 30px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

/* Fondos degradados suaves por card */
.pv-card-1 {
    background: linear-gradient(145deg, #F8F0FF, white);
    border-bottom: 5px solid var(--pv-primario);
}
.pv-card-2 {
    background: linear-gradient(145deg, #F0F8FF, white);
    border-bottom: 5px solid var(--pv-secundario-oscuro);
}
.pv-card-3 {
    background: linear-gradient(145deg, #F0FFF4, white);
    border-bottom: 5px solid var(--pv-terciario-oscuro);
}

/* Estrellas de las cards */
.pv-card-estrella {
    position: absolute;
    color: var(--pv-primario);
    opacity: 0.2;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.pv-card-estrella-1 { top: 15px; right: 15px; }
.pv-card-estrella-2 { bottom: 15px; left: 15px; }
.pv-card-estrella-3 { top: 30px; left: 30px; opacity: 0.1; font-size: 1rem; }
.pv-card-estrella-4 { bottom: 30px; right: 30px; opacity: 0.1; font-size: 1rem; }

.pv-card-download:hover .pv-card-estrella {
    opacity: 0.5;
    transform: rotate(10deg) scale(1.2);
}

/* Iconos de las cards */
.pv-icon-download {
    font-size: 4rem;
    margin-bottom: 1.2rem;
    transition: all 0.4s ease;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.pv-card-1 .pv-icon-download { color: var(--pv-primario); }
.pv-card-2 .pv-icon-download { color: var(--pv-secundario-oscuro); }
.pv-card-3 .pv-icon-download { color: var(--pv-terciario-oscuro); }

.pv-card-download h5 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--pv-texto-principal);
}

.pv-card-download .small {
    color: var(--pv-texto-suave);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    padding: 0 0.5rem;
}

/* ===== BOTONES DE CARDS - CORREGIDOS ===== */
.pv-card-download .btn {
    border-radius: 50px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid transparent;
}

/* Card 1 - Morado */
.pv-card-1 .btn {
    background: var(--pv-primario);
    color: white !important;
    border: 2px solid white;
    box-shadow: 0 5px 15px rgba(159, 122, 234, 0.3);
}

.pv-card-1 .btn:hover {
    background: white;
    color: var(--pv-primario) !important;
    border-color: var(--pv-primario);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(159, 122, 234, 0.4);
}

/* Card 2 - Azul */
.pv-card-2 .btn {
    background: var(--pv-secundario-oscuro);
    color: white !important;
    border: 2px solid white;
    box-shadow: 0 5px 15px rgba(99, 179, 237, 0.3);
}

.pv-card-2 .btn:hover {
    background: white;
    color: var(--pv-secundario-oscuro) !important;
    border-color: var(--pv-secundario-oscuro);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(99, 179, 237, 0.4);
}

/* Card 3 - Verde */
.pv-card-3 .btn {
    background: var(--pv-terciario-oscuro);
    color: white !important;
    border: 2px solid white;
    box-shadow: 0 5px 15px rgba(104, 211, 145, 0.3);
}

.pv-card-3 .btn:hover {
    background: white;
    color: var(--pv-terciario-oscuro) !important;
    border-color: var(--pv-terciario-oscuro);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(104, 211, 145, 0.4);
}

/* Hover de las cards */
.pv-card-download:hover {
    transform: translateY(-15px);
    box-shadow: var(--pv-sombra-pastel);
}

.pv-card-1:hover { border-color: var(--pv-primario); }
.pv-card-2:hover { border-color: var(--pv-secundario-oscuro); }
.pv-card-3:hover { border-color: var(--pv-terciario-oscuro); }

/* ===== SEPARADOR DIVERTIDO ===== */
.pv-separador-divertido {
    text-align: center;
    margin: 3rem 0;
    font-size: 2.2rem;
    opacity: 0.5;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pv-separador-divertido i {
    animation: pv-rebotar 3s ease-in-out infinite;
    color: var(--pv-primario);
}

.pv-separador-divertido i:nth-child(2) { animation-delay: 0.5s; color: var(--pv-secundario); }
.pv-separador-divertido i:nth-child(3) { animation-delay: 1s; color: var(--pv-terciario); }
.pv-separador-divertido i:nth-child(4) { animation-delay: 1.5s; color: var(--pv-acento); }
.pv-separador-divertido i:nth-child(5) { animation-delay: 2s; color: var(--pv-destacado); }
.pv-separador-divertido i:nth-child(6) { animation-delay: 2.5s; }

/* ===== BOTÓN PRINCIPAL - VERSIÓN CENTRADA ===== */
.pv-boton-accion {
    background: linear-gradient(135deg, rgba(159, 122, 234, 0.9) 0%, rgba(144, 205, 244, 0.9) 100%);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 4px solid white;
    box-shadow: 0 20px 40px rgba(159, 122, 234, 0.2);
    position: relative;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    padding: 0 1rem;
    backdrop-filter: blur(5px);
    margin: 0 auto;
}

/* Efecto línea mágica en botón */
.pv-boton-accion::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #B794F4, #90CDF4, #9AE6B4, #FBB6CE, #FAF089);
    background-size: 300% 300%;
    border-radius: 50px;
    z-index: -1;
    animation: pv-girarMagico 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pv-boton-accion:hover::before {
    opacity: 1;
}

/* Estrellas del botón */
.pv-boton-estrella-1, .pv-boton-estrella-2, .pv-boton-estrella-3, .pv-boton-estrella-4 {
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    animation: pv-flotar 3s ease-in-out infinite;
    z-index: 2;
}

.pv-boton-estrella-1 { top: 10px; left: 15px; }
.pv-boton-estrella-2 { bottom: 10px; right: 15px; animation-delay: 1s; }
.pv-boton-estrella-3 { top: 50%; right: 50px; animation-delay: 2s; }
.pv-boton-estrella-4 { top: 30%; left: 30px; animation-delay: 1.5s; font-size: 1.2rem; }

/* Contenedor del ícono */
.pv-icono-contenedor {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--pv-primario), var(--pv-secundario-oscuro));
    background: -webkit-linear-gradient(135deg, var(--pv-primario), var(--pv-secundario-oscuro));
    border-radius: 50%;
    margin: 1.5rem 1rem;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    transition: all 0.4s ease;
}

.pv-icono-boton {
    font-size: 4rem;
    color: white;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

/* Contenido del botón - CENTRADO */
.pv-contenido-boton {
    flex-grow: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem;
    text-align: center;
}

.pv-texto-boton {
    color: white;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 0.3rem;
    line-height: 1.2;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.pv-descripcion-boton {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 300;
    margin: 0;
}

/* Contenedor derecho - CENTRADO */
.pv-contenedor-derecha {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 0 1rem;
}

.pv-badge-boton {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    color: var(--pv-primario-oscuro) !important;
    border: 3px solid white;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.pv-flecha-boton {
    color: white;
    font-size: 2.8rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

/* Hover botón principal */
.pv-boton-accion:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 30px 50px rgba(159, 122, 234, 0.3);
}

.pv-boton-accion:hover .pv-icono-contenedor {
    transform: rotate(5deg) scale(1.05);
}

.pv-boton-accion:hover .pv-icono-boton {
    transform: scale(1.1);
}

.pv-boton-accion:hover .pv-flecha-boton {
    transform: translateX(10px);
}

/* ===== ALERTA PERSONALIZADA ===== */
.pv-alerta-personalizado {
    background: var(--pv-degrade-encabezado);
    border-radius: 60px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 20px 40px rgba(186, 163, 231, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.pv-icono-alerta {
    font-size: 2.5rem;
    color: white;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.pv-contenido-alerta {
    flex: 1;
    min-width: 250px;
}

.pv-contenido-alerta strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.3rem;
    color: white;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.pv-contenido-alerta span {
    color: rgba(255, 255, 255, 0.95);
}

.pv-btn-alerta {
    background: white;
    color: var(--pv-primario-oscuro) !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pv-btn-alerta:hover {
    background: transparent;
    border-color: white;
    color: white !important;
    transform: translateY(-3px);
}

/* ===== BOTÓN REGRESAR ===== */
.pv-boton-regresar {
    background: linear-gradient(135deg, #B794F4 0%, #76E4F7 100%);
    color: white !important;
    border: 3px solid white;
    padding: 1rem 2.5rem;
    border-radius: 60px;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s ease;
    font-size: 1.1rem;
    box-shadow: 0 15px 30px rgba(118, 228, 247, 0.2);
}

.pv-boton-regresar:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(118, 228, 247, 0.3);
    background: linear-gradient(135deg, #76E4F7 0%, #B794F4 100%);
}

/* ===== ANIMACIONES ===== */
@keyframes pv-girarMagico {
    0% { background-position: 0% 50%; opacity: 0.4; }
    50% { background-position: 100% 50%; opacity: 0.8; }
    100% { background-position: 0% 50%; opacity: 0.4; }
}

@keyframes pv-flotarEstrellas {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    25% { transform: translateY(-20px) rotate(5deg); opacity: 0.15; }
    50% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    75% { transform: translateY(20px) rotate(-5deg); opacity: 0.15; }
    100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
}

@keyframes pv-flotarEstrellasFondo {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes pv-brillarEstrella {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.3); }
}

@keyframes pv-flotar {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pv-rebotar {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px) scale(1.1); }
}

@keyframes pv-aparecer {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pv-aparicion {
    animation: pv-aparecer 0.7s ease forwards;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .pv-contenedor-cultura-sntss {
        padding: 2rem;
        margin: 1rem;
        border-radius: 40px;
    }
    
    .pv-titulo-comision {
        font-size: 1.6rem;
    }
    
    .pv-subtitulo-comision {
        font-size: 1rem;
    }
    
    .pv-logo-sntss, .pv-logo-cultura {
        height: 70px !important;
    }
    
    .pv-texto-boton {
        font-size: 1.6rem;
    }
    
    .pv-icono-contenedor {
        min-width: 90px;
        width: 90px;
        height: 90px;
        margin: 1.5rem 0.5rem;
    }
    
    .pv-icono-boton {
        font-size: 3.2rem;
    }
}

/* ===== RESPONSIVE TABLET ===== */
@media (max-width: 768px) {
    .pv-contenedor-cultura-sntss {
        padding: 1.5rem;
    }
    
    .pv-header-luxe {
        padding: 2rem 1rem;
    }
    
    .pv-header-luxe .col-md-3:first-child {
        display: none;
    }
    
    .pv-header-luxe .col-md-3:last-child {
        display: block !important;
        text-align: center;
        width: 100%;
    }
    
    .pv-logo-cultura {
        height: 60px !important;
        margin-bottom: 1rem;
    }
    
    .row.justify-content-center {
        flex-direction: column;
        align-items: center;
    }
    
    .col-12.col-md-6.col-lg-4 {
        width: 100%;
        max-width: 350px;
    }
    
    .pv-titulo-seccion {
        font-size: 1.5rem;
    }
    
    .pv-boton-accion {
        flex-direction: column;
        max-width: 400px;
        padding: 1.5rem;
        justify-content: center;
    }
    
    .pv-icono-contenedor {
        margin: 0 auto 1rem;
    }
    
    .pv-contenido-boton {
        padding: 0.5rem 0 1rem;
        width: 100%;
    }
    
    .pv-contenedor-derecha {
        flex-direction: row;
        margin: 0;
    }
    
    .pv-texto-boton {
        font-size: 1.5rem;
    }
    
    .pv-alerta-personalizado {
        flex-direction: column;
        text-align: center;
        border-radius: 40px;
        padding: 2rem;
    }
    
    .pv-contenido-alerta {
        text-align: center;
    }
    
    .pv-btn-alerta {
        width: 100%;
    }
}

/* ===== RESPONSIVE MÓVIL ===== */
@media (max-width: 480px) {
    .pv-contenedor-cultura-sntss {
        padding: 1.5rem;
        border-radius: 30px;
    }
    
    .pv-titulo-comision {
        font-size: 1.3rem;
    }
    
    .pv-subtitulo-comision {
        font-size: 0.9rem;
    }
    
    .pv-logo-cultura {
        height: 50px !important;
    }
    
    .pv-titulo-seccion {
        font-size: 1.4rem;
    }
    
    .pv-card-download {
        padding: 1.5rem;
        min-height: 280px;
    }
    
    .pv-icon-download {
        font-size: 3.5rem;
    }
    
    .pv-separador-divertido {
        font-size: 1.8rem;
        gap: 1rem;
    }
    
    .pv-boton-accion {
        padding: 1rem;
    }
    
    .pv-texto-boton {
        font-size: 1.3rem;
    }
    
    .pv-descripcion-boton {
        font-size: 0.9rem;
    }
    
    .pv-badge-boton {
        font-size: 0.9rem;
        padding: 0.5rem 1.2rem;
    }
    
    .pv-flecha-boton {
        font-size: 2.2rem;
    }
    
    .pv-icono-contenedor {
        min-width: 70px;
        width: 70px;
        height: 70px;
    }
    
    .pv-icono-boton {
        font-size: 2.5rem;
    }
    
    .pv-boton-regresar {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .pv-estrella-2 { right: 40px; }
    .pv-estrella-3 { left: 60px; }
    .pv-estrella-5 { left: 100px; }
    .pv-estrella-6 { right: 70px; }
}

/* ===== RESPONSIVE MÓVIL PEQUEÑO ===== */
@media (max-width: 360px) {
    .pv-contenedor-cultura-sntss {
        padding: 1rem;
    }
    
    .pv-titulo-comision {
        font-size: 1.1rem;
    }
    
    .pv-subtitulo-comision {
        font-size: 0.8rem;
    }
    
    .pv-logo-cultura {
        height: 45px !important;
    }
    
    .pv-texto-boton {
        font-size: 1.2rem;
    }
    
    .pv-icono-contenedor {
        min-width: 60px;
        width: 60px;
        height: 60px;
    }
    
    .pv-icono-boton {
        font-size: 2.2rem;
    }
}