
:root {
    /* PALETA DE COLORES CULTURA SNTSS - GAMA VIBRANTE */
    /* Núcleo Azul-Institucional */
    --azul-institucional: #003c82;
    --azul-profundo: #1B476A;
    --azul-medio: #2A6B9E;
    --azul-brillante: #00a8ff;
    --azul-claro: #48A5F9;
    --azul-neon: #00eeff;
    
    /* Gama Púrpura-Morado para creatividad */
    --purpura-profundo: #4A1E7A;
    --morado-vibrante: #6C63FF;
    --lila-suave: #8A7EFF;
    --lavanda: #A594F9;
    
    /* Gama Verde-Turquesa para crecimiento */
    --verde-esmeralda: #00A896;
    --turquesa-vibrante: #00D4C6;
    --verde-agua: #52D1DC;
    --menta: #88E1F2;
    
    /* Gama Coral-Naranja para energía */
    --coral-vibrante: #FF6B6B;
    --naranja-energia: #FF9A3D;
    --melon: #FFC3A0;
    --salmon: #FFAAA5;
    
    /* Gama Dorada para excelencia */
    --oro-sntss: #D4AF37;
    --oro-claro: #F4D03F;
    --bronce: #CD7F32;
    --ambar: #FFBF00;
    
    /* Neutros institucionales */
    --blanco-hueso: #FAF9F6;
    --gris-perla: #F8F9FA;
    --gris-plata: #E9ECEF;
    --gris-carbón: #343A40;
    
    /* Degradados especiales */
    --degrade-creativo: linear-gradient(135deg, #6C63FF, #00D4C6, #FF6B6B);
    --degrade-institucional: linear-gradient(135deg, #003c82, #4A1E7A, #00A896);
    --degrade-energia: linear-gradient(135deg, #FF9A3D, #FF6B6B, #6C63FF);
    --degrade-tranquilo: linear-gradient(135deg, #48A5F9, #8A7EFF, #88E1F2);
    --degrade-oro: linear-gradient(135deg, #D4AF37, #F4D03F, #FFBF00);
    
    /* Sombras con color */
    --sombra-azul: 0 10px 30px rgba(0, 60, 130, 0.15);
    --sombra-purpura: 0 10px 30px rgba(108, 99, 255, 0.15);
    --sombra-verde: 0 10px 30px rgba(0, 168, 150, 0.15);
    --sombra-oro: 0 10px 30px rgba(212, 175, 55, 0.15);
    --sombra-coral: 0 10px 30px rgba(255, 107, 107, 0.15);
}

/* ESTILO DE FONDO CON GRADIENTE VIBRANTE */
.cultura-sntss-body {
    background: linear-gradient(135deg, 
        rgba(248, 249, 250, 0.9) 0%, 
        rgba(232, 244, 255, 0.7) 50%,
        rgba(240, 237, 255, 0.6) 100%);
    min-height: 100vh;
    padding-top: 40px;
    padding-bottom: 50px;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    position: relative;
    overflow-x: hidden;
}

/* EFECTO DE FONDO DECORATIVO */
.cultura-sntss-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(108, 99, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 212, 198, 0.03) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* CONTENEDOR PRINCIPAL CON EFECTO VIDRIO */
.contenedor-cultura-sntss {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 
        var(--sombra-azul),
        0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

/* EFECTO BORDE LUMINOSO MULTICOLOR */
.contenedor-cultura-sntss::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 3px;
    background: var(--degrade-creativo);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
    animation: brilloBorde 3s ease-in-out infinite;
}

@keyframes brilloBorde {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* ENCABEZADO ESPECTACULAR CON DEGRADADO MULTICOLOR */
.header-luxe.cultura {
    background: var(--degrade-tranquilo);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sombra-purpura);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* EFECTO DE PARTÍCULAS EN ENCABEZADO */
.header-luxe.cultura::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 50%, 
        rgba(255, 255, 255, 0.15) 0%, 
        transparent 50%
    );
    animation: flotarParticulas 20s infinite linear;
}

@keyframes flotarParticulas {
    from {
        transform: translate(-25%, -25%) rotate(0deg);
    }
    to {
        transform: translate(-25%, -25%) rotate(360deg);
    }
}

.header-luxe.cultura::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--degrade-creativo);
    z-index: 2;
}

.titulo-comision.cultura {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.8rem;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2);
    margin: 0;
    position: relative;
    z-index: 2;
    background: var(--degrade-oro);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitulo-comision.cultura {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-top: 0.75rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* LOGOS CON EFECTO NEÓN MEJORADO */
.logo-img-sntss {
    height: 90px !important;
    width: auto;
    filter: 
        drop-shadow(0 0 12px rgba(0, 168, 255, 0.6))
        drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.logo-img-cultura {
    height: 90px !important;
    width: auto;
    filter: 
        drop-shadow(0 0 12px rgba(108, 99, 255, 0.6))
        drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.logo-img-sntss:hover {
    filter: 
        drop-shadow(0 0 18px rgba(0, 168, 255, 0.9))
        drop-shadow(0 6px 20px rgba(0, 0, 0, 0.25));
    transform: scale(1.08) rotate(2deg);
}

.logo-img-cultura:hover {
    filter: 
        drop-shadow(0 0 18px rgba(108, 99, 255, 0.9))
        drop-shadow(0 6px 20px rgba(0, 0, 0, 0.25));
    transform: scale(1.08) rotate(-2deg);
}

/* ============================================== */
/* BOTÓN REGRESAR CON ESTILO VIBRANTE - TEXTO BLANCO EN HOVER */
/* ============================================== */
.contenedor-regresar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.btn-regresar-sntss {
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    background: var(--degrade-institucional);
    background-size: 200% 100%;
    color: white !important; /* Texto siempre blanco */
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    box-shadow: 
        0 6px 20px rgba(0, 60, 130, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-regresar-sntss i {
    color: white !important; /* Ícono siempre blanco */
    transition: all 0.4s ease;
}

.btn-regresar-sntss::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.7s ease;
}

.btn-regresar-sntss:hover {
    background: var(--degrade-creativo); /* Cambia a degradado creativo */
    background-size: 200% 100%;
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
        0 10px 30px rgba(108, 99, 255, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.4);
    color: white !important; /* Asegurar texto blanco en hover */
}

.btn-regresar-sntss:hover i {
    color: white !important; /* Asegurar ícono blanco en hover */
}

.btn-regresar-sntss:hover::before {
    left: 100%;
}

/* SECCIÓN DE BOTONES CON COLORES VIBRANTES */
.contenedor-botones-sntss {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.boton-accion-sntss {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 1.75rem 1.25rem;
    min-width: 280px;
    max-width: 320px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
    position: relative;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

/* LÍNEA SUPERIOR CON COLOR ESPECÍFICO PARA CADA BOTÓN */
.boton-accion-sntss[data-tipo="privacidad"]::before {
    background: var(--degrade-creativo);
}

.boton-accion-sntss[data-tipo="formato"]::before {
    background: linear-gradient(90deg, #00A896, #00D4C6, #52D1DC);
}

.boton-accion-sntss[data-tipo="convocatoria"]::before {
    background: linear-gradient(90deg, #FF6B6B, #FF9A3D, #FFC3A0);
}

.boton-accion-sntss::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 20px 20px 0 0;
    z-index: 2;
    transition: all 0.4s ease;
}

.icono-boton-accion {
    font-size: 2.8rem;
    margin-bottom: 1.25rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

/* COLORES DE ÍCONOS ESPECÍFICOS */
.boton-accion-sntss[data-tipo="privacidad"] .icono-boton-accion {
    background: var(--degrade-creativo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.boton-accion-sntss[data-tipo="formato"] .icono-boton-accion {
    background: linear-gradient(90deg, #00A896, #00D4C6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.boton-accion-sntss[data-tipo="convocatoria"] .icono-boton-accion {
    background: linear-gradient(90deg, #FF6B6B, #FF9A3D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.texto-boton-accion {
    color: var(--azul-profundo);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
}

.descripcion-boton-accion {
    color: var(--gris-carbón);
    font-size: 0.92rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.badge-boton-accion {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    transition: all 0.3s ease;
}

/* BADGES CON COLORES ESPECÍFICOS */
.boton-accion-sntss[data-tipo="privacidad"] .badge-boton-accion {
    background: linear-gradient(90deg, #6C63FF, #8A7EFF);
    color: white;
    box-shadow: 0 3px 10px rgba(108, 99, 255, 0.3);
}

.boton-accion-sntss[data-tipo="formato"] .badge-boton-accion {
    background: linear-gradient(90deg, #00A896, #00D4C6);
    color: white;
    box-shadow: 0 3px 10px rgba(0, 168, 150, 0.3);
}

.boton-accion-sntss[data-tipo="convocatoria"] .badge-boton-accion {
    background: linear-gradient(90deg, #FF6B6B, #FF9A3D);
    color: white;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
}

/* EFECTOS HOVER ESPECTACULARES */
.boton-accion-sntss:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 15px 35px rgba(108, 99, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.8);
}

.boton-accion-sntss:hover::before {
    height: 8px;
    filter: brightness(1.2);
}

.boton-accion-sntss:hover .icono-boton-accion {
    transform: scale(1.15) rotate(5deg);
    filter: 
        drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2))
        drop-shadow(0 0 15px currentColor);
}

.boton-accion-sntss:hover .texto-boton-accion {
    color: var(--morado-vibrante);
}

.boton-accion-sntss:hover .badge-boton-accion {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ============================================== */
/* INDICACIÓN CORREO CON ESTILO VIBRANTE - TEXTO BLANCO EN HOVER */
/* ============================================== */
.indicacion-correo-sntss {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-left: 6px solid;
    border-image: var(--degrade-creativo) 1;
    padding: 35px;
    border-radius: 20px;
    margin: 50px 0;
    box-shadow: 
        var(--sombra-azul),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.indicacion-correo-sntss::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--degrade-creativo);
}

.correo-enlace-sntss {
    background: var(--degrade-institucional);
    color: white !important; /* Texto siempre blanco */
    font-weight: 700;
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: 
        0 6px 20px rgba(0, 60, 130, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.correo-enlace-sntss i {
    color: white !important; /* Ícono siempre blanco */
    transition: all 0.4s ease;
}

.correo-enlace-sntss::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.7s ease;
}

.correo-enlace-sntss:hover {
    background: var(--degrade-creativo); /* Cambia a degradado creativo */
    background-size: 200% 100%;
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(108, 99, 255, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.4);
    color: white !important; /* Asegurar texto blanco en hover */
}

.correo-enlace-sntss:hover i {
    color: white !important; /* Asegurar ícono blanco en hover */
}

.correo-enlace-sntss:hover::before {
    left: 100%;
}

/* VISOR DE CONVOCATORIA CON ESTILO VIBRANTE */
.convocatoria-img-container-sntss {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 24px;
    box-shadow: 
        var(--sombra-azul),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.convocatoria-img-container-sntss::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--degrade-creativo);
    z-index: 2;
    transition: height 0.3s ease;
}

.convocatoria-img-container-sntss:hover::before {
    height: 8px;
}

.img-convocatoria-sntss {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(108, 99, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.img-convocatoria-sntss:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.25),
        0 15px 35px rgba(108, 99, 255, 0.2);
    border-color: rgba(255, 255, 255, 1);
}

/* TÍTULOS CON COLORES VIBRANTES */
.indicacion-correo-sntss h4,
.convocatoria-img-container-sntss h4 {
    background: var(--degrade-creativo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* ANIMACIONES */
@keyframes aparecerCultura {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.aparicion-cultura {
    animation: aparecerCultura 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .contenedor-cultura-sntss {
        margin: 1.5rem;
        padding: 2rem;
    }
    
    .boton-accion-sntss {
        min-width: 260px;
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .contenedor-cultura-sntss {
        padding: 1.75rem;
        margin: 1rem;
        border-radius: 20px;
    }
    
    .header-luxe.cultura {
        padding: 2rem 1.5rem;
        margin-bottom: 2.5rem;
        border-radius: 18px;
    }
    
    .titulo-comision.cultura {
        font-size: 1.6rem;
    }
    
    .logo-img-sntss,
    .logo-img-cultura {
        height: 75px !important;
    }
    
    .contenedor-botones-sntss {
        gap: 1.5rem;
    }
    
    .boton-accion-sntss {
        min-width: 240px;
        max-width: 280px;
        padding: 1.5rem 1rem;
    }
    
    .icono-boton-accion {
        font-size: 2.5rem;
    }
    
    .texto-boton-accion {
        font-size: 1.1rem;
    }
}
