/* Kinematica v2026 - Cinematic Dark System */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;700&family=Roboto:wght@300;400;500&display=swap');

:root {
    --bg-dark: #3D3E4A;
    --bg-light: #DDDBDD;
    --accent-red: #770309;
    --text-light: #F5F5F5;
    --text-dark: #2A2A2A;
    --font-title: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition-speed: 0.5s;
}

body {
    background: linear-gradient(135deg, var(--bg-light) 0%, #2a2a2a 50%, var(--bg-dark) 100%);
    background-attachment: fixed;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

/* Custom Selection */
::selection {
    background: var(--accent-red);
    color: white;
}

::-moz-selection {
    background: var(--accent-red);
    color: white;
}

/* Global Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

section {
    animation: fadeInUp 0.8s ease-out;
}

h1,
h2,
h3,
h4,
h5,
h6,
.cinematic-title {
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

a {
    transition: all 0.3s ease;
}

/* Sticky Header */
.kine-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.kine-header.scrolled {
    background: #1a1a1a !important;
    /* Color sólido forzado */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 40px;
    /* Reducir padding al hacer scroll */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.kine-logo img {
    height: 60px;
    display: block;
}

.bdx-portal-link {
    display: flex;
    align-items: center;
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-title);
    font-size: 1.5rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    border: 1px solid rgba(211, 47, 47, 0.3);
    padding: 8px 16px;
    border-radius: 2px;
}

.bdx-portal-link:hover {
    color: #fff;
    background: rgba(211, 47, 47, 0.1);
    border-color: var(--accent-red);
}

.bdx-portal-link i {
    margin-right: 8px;
    font-size: 1.5rem;
}

/* Home Previews System */
.previews-container {
    padding-top: 72px;
    /* Header height offset */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Mosaic Section (Licenciaturas) */
.mosaic-section {
    display: flex;
    flex-direction: column;
    /* Cambiado a columna para apilar header y grid */
    width: 100%;
    background-color: var(--bg-dark);
    padding-top: 40px;
    /* Espacio para el header */
}

/* Header especifico de esta seccion para centrarlo */
.mosaic-section .section-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.mosaic-grid {
    display: flex;
    flex-direction: row;
    height: 60vh;
    /* Altura del grid de imagenes */
    width: 100%;
}

.preview-block {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-right: 1px solid #222;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.preview-block:last-child {
    border-right: none;
}

/* Background Handling */
.preview-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

.preview-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Overlay */
    transition: background 0.4s ease;
}

.preview-block:hover .preview-bg {
    transform: scale(1.05);
}

.preview-block:hover .preview-bg::after {
    background: rgba(0, 0, 0, 0.3);
}

/* Content inside Preview */
.preview-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.preview-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    transition: transform 0.4s ease;
}

.cta-button {
    padding: 12px 30px;
    background-color: white;
    /* Blanco por defecto */
    color: var(--accent-red);
    /* Texto rojo */
    font-family: var(--font-title);
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: inline-block;
    font-weight: 700;
    /* Negrita para mejor lectura */
}

/* Show details on hover */
.preview-block:hover .cta-button {
    opacity: 1;
    transform: translateY(0);
}

.preview-block:hover .preview-title {
    transform: translateY(-10px);
    color: var(--accent-red);
}

.cta-button:hover {
    background-color: var(--accent-red);
    /* Fondo rojo en hover */
    color: white;
    /* Texto blanco en hover */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    /* Glow blanco sutil */
}

/* Navigation Overrides */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    transform: scale(0.7);
}

/* Grid Filters */
.filters-container {
    background: #111;
    padding: 15px 40px;
    border-bottom: 1px solid #222;
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter-btn {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 8px 16px;
    cursor: pointer;
    font-family: var(--font-title);
    text-transform: uppercase;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    min-height: 44px;
    /* A11y */
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-red);
    color: white;
    border-color: var(--accent-red);
}

/* Grid Section (Diplomados) */
.grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    background-color: rgba(62, 63, 75, 0.5);
    /* Gap color */
    gap: 1px;
    flex-grow: 1;
}

.grid-item {
    background: rgba(30, 30, 35, 0.9);
    backdrop-filter: blur(10px);
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 20px;
}

.grid-item span {
    font-family: var(--font-title);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-top: 10px;
}

.grid-item i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #444;
    transition: color 0.3s ease;
}

.grid-item:hover {
    background: rgba(42, 42, 42, 0.9);
    color: var(--text-light);
}

.grid-item:hover i {
    color: var(--accent-red);
}

/* Grid 2 columns for Licenciaturas */
.grid-section.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background: transparent;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-item-large {
    height: 280px;
    background: linear-gradient(145deg, rgba(35, 35, 40, 0.95), rgba(25, 25, 30, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.grid-item-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), #5a0207);
}

.grid-item-large i {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.grid-item-large span {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.grid-item-large small {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(119, 3, 9, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
}

.grid-item-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(119, 3, 9, 0.4);
}

.grid-item-large:hover i {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .grid-section.grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-item-large {
        height: 220px;
    }
}

/* Footer Minimal */
.kine-footer {
    background: rgba(42, 42, 42, 0.95);
    padding: 20px 40px;
    text-align: center;
    font-size: 1.5rem;
    color: rgba(221, 219, 221, 0.6);
    border-top: 1px solid var(--accent-red);
    /* Borde rojo sutil */
    box-shadow: 0 -5px 15px rgba(119, 3, 9, 0.3);
    /* Glow rojo cinematográfico */
    position: relative;
    z-index: 10;
}

/* Transitions */
.screen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease;
}

.screen-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Responsive */
@media (max-width: 768px) {
    .mosaic-section {
        flex-direction: column;
        height: auto;
    }

    .preview-block {
        height: 300px;
        border-right: none;
        border-bottom: 1px solid #222;
    }

    .preview-title {
        font-size: 2rem;
    }

    .grid-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   HERO SECTION - Enhanced Slider
============================================= */
.hero-section {
    height: 56.25vw;
    /* Aspect ratio 16:9 */
    max-height: 80vh;
    min-height: 400px;
    width: 100%;
    position: relative;
}

.hero-slider {
    height: 100%;
    width: 100%;
}

.hero-slider .swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.4) 0%,
            rgba(10, 10, 10, 0.6) 50%,
            rgba(10, 10, 10, 0.9) 100%);
}

.swiper-slide-active .slide-bg {
    transform: scale(1.05);
}

.slide-content {
    position: absolute;
    bottom: 20%;
    left: 5%;
    z-index: 10;
    max-width: 900px;
}

.slide-tag {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    font-family: var(--font-title);
    font-size: 2rem;
    letter-spacing: 3px;
    padding: 8px 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.slide-title {
    font-size: 7rem;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 4px 4px 20px rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
}

.slide-rvoe {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-red);
}

.slide-description {
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    max-width: 700px;
    line-height: 1.4;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.slide-content .cta-button {
    font-size: 2rem;
    padding: 18px 45px;
    background: white;
    color: var(--accent-red);
    margin-top: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.5s;
    /* Delay for better effect */
}

.swiper-slide-active .slide-content .cta-button {
    opacity: 1;
    transform: translateY(0);
}

.slide-content .cta-button:hover {
    background: var(--accent-red);
    color: white;
    border-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(119, 3, 9, 0.6);
}

.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--accent-red);
}

/* ============================================
   PREVIEW BLOCKS - Enhanced Hover
============================================= */
.preview-tag {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-title);
    font-size: 1.5rem;
    letter-spacing: 2px;
    padding: 4px 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.preview-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.preview-block:hover .preview-description {
    opacity: 1;
    transform: translateY(0);
}

.preview-block:hover .preview-tag {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

/* ============================================
   WHY SECTION - Benefits (Enhanced)
============================================= */
.why-section {
    background: linear-gradient(180deg, rgba(30, 30, 35, 0.95) 0%, rgba(20, 20, 25, 0.98) 100%);
    backdrop-filter: blur(5px);
    padding: 100px 5%;
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-red);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.5rem;
    opacity: 0.8;
    margin-top: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(40, 40, 45, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-red);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    background: rgba(60, 60, 65, 0.95);
    border-color: rgba(119, 3, 9, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(119, 3, 9, 0.1);
}

.benefit-icon {
    margin-bottom: 30px;
    position: relative;
}

.benefit-icon i {
    font-size: 2.5rem;
    color: white;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-red), #5a0207);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(119, 3, 9, 0.4);
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(119, 3, 9, 0.6);
}

.benefit-plus {
    font-size: 1rem !important;
    color: #666 !important;
    margin: 0 8px;
    background: none !important;
    width: auto !important;
    height: auto !important;
    box-shadow: none !important;
}

.benefit-title {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.benefit-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.5rem;
    line-height: 1.8;
}

/* ============================================
   ADMISSIONS SECTION - CTA (Enhanced)
============================================= */
.admissions-section {
    background: linear-gradient(135deg, var(--accent-red) 0%, #5a0207 50%, #2a0103 100%);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

/* Decorative background pattern */
.admissions-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
    animation: floatGlow 15s ease-in-out infinite;
}

@keyframes floatGlow {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(2%, -2%) rotate(3deg);
    }
}

/* Film strip decoration */
.admissions-section::after {
    content: '🎬';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    opacity: 0.08;
    pointer-events: none;
}

.admissions-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.admissions-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
}

.admissions-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-family: var(--font-title);
    font-size: 1rem;
    letter-spacing: 3px;
    padding: 10px 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.2);
    }
}

.admissions-date {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
}

.admissions-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.5rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.admissions-steps {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.step-number {
    font-family: var(--font-title);
    font-size: 2rem;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.step-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
}

.admissions-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-large {
    padding: 22px 50px;
    font-size: 1.5rem;
    background: white;
    color: var(--accent-red);
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.cta-large:hover {
    background: var(--bg-dark);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

.cta-outline:hover {
    background: white;
    color: var(--accent-red);
    transform: translateY(-3px);
}

/* ============================================
   COURSES SECTION
============================================= */
.courses-section {
    padding: 60px 0 0 0;
    background: transparent;
}

.courses-section .section-header {
    padding: 0 5%;
    margin-bottom: 30px;
}

.courses-section .section-title {
    font-size: 1.8rem;
}

.grid-item small {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
    font-size: 1.5rem;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
============================================= */
@media (max-width: 992px) {
    .slide-title {
        font-size: 3rem;
    }

    .admissions-content {
        flex-direction: column;
        text-align: center;
    }

    .admissions-steps {
        justify-content: center;
    }

    .admissions-cta {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }

    .slide-content {
        left: 5%;
        right: 5%;
        bottom: 20%;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .slide-description {
        font-size: 1.5rem;
    }

    .why-section {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .admissions-date {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .grid-section {
        grid-template-columns: 1fr;
    }

    .mosaic-section {
        height: auto;
    }

    .preview-block {
        height: 250px;
    }

    .preview-title {
        font-size: 1.6rem;
    }
}

/* ============================================
   NAVIGATION
============================================= */
.kine-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    color: #aaa;
    text-decoration: none;
    font-family: var(--font-title);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 10px 0;
}

.nav-link:hover {
    color: #ff4d4d;
    /* Igual que separadores */
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.4);
}

/* Dropdown Container */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.kine-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(30, 30, 35, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--accent-red);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .kine-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.kine-dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: #e0e0e0;
    /* Texto más claro por defecto */
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.kine-dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #dd080d;
    /* Color DD8DD interpretado */
    padding-left: 30px;
    border-left: 3px solid #dd080d;
}


.dropdown-menu a:hover {
    color: var(--text-light);
    background: rgba(119, 3, 9, 0.15);
    border-left-color: var(--accent-red);
    padding-left: 30px;
}

/* ============================================
   STICKY CTA (Side Button)
============================================= */
.sticky-cta {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right center;
    background: var(--accent-red);
    color: white;
    padding: 12px 25px;
    font-family: var(--font-title);
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: #b71c1c;
    color: white;
    padding-right: 35px;
}

/* ============================================
   FOOTER EXPANDED
============================================= */
.kine-footer-expanded {
    background: rgba(42, 42, 42, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-tagline {
    color: #888;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.footer-heading {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-red);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #888;
    font-size: 1.5rem;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--accent-red);
    width: 16px;
    margin-top: 3px;
}

.footer-contact a {
    color: #666;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--accent-red);
}

.footer-text {
    color: #888;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-cta {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    padding: 14px 28px;
    font-family: var(--font-title);
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: #b71c1c;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding: 20px 5%;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 1.5rem;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .kine-nav {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .sticky-cta {
        display: none;
    }
}

/* ============================================
   STATS SECTION (Enhanced)
============================================= */
.stats-section {
    background: linear-gradient(180deg, rgba(5, 5, 8, 0.98) 0%, rgba(15, 15, 18, 0.95) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 10%, var(--accent-red) 50%, transparent 90%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item {
    padding: 60px 30px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-red);
    transition: width 0.4s ease;
}

.stat-item:hover::before {
    width: 60%;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(119, 3, 9, 0.15);
    transform: scale(1.02);
}

.stat-number {
    display: block;
    font-family: var(--font-title);
    font-size: 4rem;
    color: var(--accent-red);
    margin-bottom: 15px;
    text-shadow: 0 0 40px rgba(119, 3, 9, 0.5);
    transition: all 0.4s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 60px rgba(119, 3, 9, 0.7);
}

.stat-label {
    display: block;
    color: #aaa;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: 30px 15px;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}

/* ============================================
   PROFILE SECTION (Ingreso / Egreso)
============================================= */
.profile-section {
    background: transparent;
    padding: 80px 5%;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-card {
    background: rgba(30, 30, 35, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.profile-card:hover {
    border-color: rgba(119, 3, 9, 0.5);
    transform: translateY(-5px);
}

.profile-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.profile-icon i {
    font-size: 1.5rem;
    color: white;
}

.profile-title {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.profile-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.profile-text strong {
    color: var(--accent-red);
}

.profile-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
}

.profile-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}

@media (max-width: 768px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }

    .profile-card {
        padding: 30px;
    }
}

/* ============================================
   CONTACT SECTION
============================================= */
.contact-section {
    background: transparent;
    padding: 80px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    margin-bottom: 30px;
    color: #e0e0e0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 1.5rem;
    line-height: 1.6;
}

.contact-item i {
    color: var(--accent-red);
    font-size: 1.5rem;
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item strong {
    display: block;
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-item a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-red);
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    background: rgba(119, 3, 9, 0.1);
}

/* Contact Form */
.contact-form-col {
    background: rgba(30, 30, 35, 0.9);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form .form-row {
    margin-bottom: 20px;
}

.contact-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    background: rgba(119, 3, 9, 0.05);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.contact-form select {
    appearance: none;
    cursor: pointer;
}

.contact-form select option {
    background: #2a2a2a;
    color: var(--text-light);
}

.cta-submit {
    width: 100%;
    cursor: pointer;
    border: none;
    opacity: 1;
    transform: none;
}

.cta-submit:hover {
    background: #5a0207;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .contact-form .form-row-2 {
        grid-template-columns: 1fr;
    }

    .contact-form-col {
        padding: 25px;
    }
}

/* ============================================
   TESTIMONIALS SECTION
============================================= */
.testimonials-section {
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.98) 0%, rgba(35, 35, 40, 0.95) 100%);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: 50px;
    left: 10%;
    font-size: 20rem;
    font-family: Georgia, serif;
    color: rgba(119, 3, 9, 0.08);
    line-height: 1;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(50, 50, 55, 0.8);
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-red), #5a0207);
    transition: height 0.5s ease;
}

.testimonial-card:hover::before {
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(119, 3, 9, 0.3);
}

.testimonial-quote {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-red);
    box-shadow: 0 0 20px rgba(119, 3, 9, 0.4);
}

.author-photo.placeholder {
    background: linear-gradient(135deg, var(--accent-red), #5a0207);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-family: var(--font-title);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.author-role {
    color: var(--accent-red);
    font-size: 1rem;
    margin-top: 5px;
}

/* ============================================
   GALLERY/PORTFOLIO SECTION
============================================= */
.gallery-section {
    background: rgba(10, 10, 12, 0.98);
    padding: 100px 5%;
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img,
.gallery-item .gallery-placeholder,
.gallery-item .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.gallery-img {
    background-size: cover;
    background-position: center;
}

.gallery-placeholder {
    background: linear-gradient(135deg, #2a2a2e 0%, #1a1a1e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #444;
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.gallery-placeholder span {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(119, 3, 9, 0.9) 0%, transparent 60%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


.gallery-item:hover img,
.gallery-item:hover .gallery-placeholder,
.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: white;
    letter-spacing: 1px;
}

.gallery-category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    margin-top: 5px;
}

/* ============================================
   INSTRUCTORS/DOCENTES SECTION
============================================= */
.instructors-section {
    background: linear-gradient(180deg, rgba(25, 25, 30, 0.98) 0%, rgba(15, 15, 20, 0.98) 100%);
    padding: 100px 5%;
    position: relative;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.instructor-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(40, 40, 45, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.instructor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.instructor-card:hover::before {
    left: 100%;
}

.instructor-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(119, 3, 9, 0.3);
}

.instructor-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    border: 4px solid var(--accent-red);
    box-shadow: 0 0 30px rgba(119, 3, 9, 0.4);
    transition: all 0.4s ease;
}

.instructor-photo.placeholder {
    background: linear-gradient(135deg, #3a3a3e 0%, #2a2a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 4rem;
}

.instructor-card:hover .instructor-photo {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(119, 3, 9, 0.6);
}

.instructor-name {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.instructor-specialty {
    color: var(--accent-red);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.instructor-bio {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    line-height: 1.7;
}

.instructor-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.instructor-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: all 0.3s ease;
}

.instructor-social a:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    background: rgba(119, 3, 9, 0.1);
}

/* Responsive for new sections */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .instructors-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-section::before {
        font-size: 12rem;
        top: 20px;
        left: 5%;
    }
}

/* ============================================
   PROGRAM DETAIL SECTIONS
============================================= */
.program-detail-section {
    background: linear-gradient(180deg, rgba(15, 15, 18, 0.98) 0%, rgba(10, 10, 12, 0.99) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.program-detail-alt {
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.99) 0%, rgba(20, 20, 23, 0.98) 100%);
}

.program-detail-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 500px;
    max-width: 1600px;
    margin: 0 auto;
}

.program-detail-container.reverse {
    grid-template-columns: 1.2fr 1fr;
}

/* Program Image */
.program-image {
    position: relative;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.program-detail-section:hover .program-image img {
    transform: scale(1.05);
}

.program-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 50%, rgba(10, 10, 12, 0.99) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.program-detail-container.reverse .program-image-overlay {
    background: linear-gradient(to left, transparent 50%, rgba(10, 10, 12, 0.99) 100%);
    justify-content: flex-end;
}

.program-badge {
    background: var(--accent-red);
    color: white;
    font-family: var(--font-title);
    font-size: 1.5rem;
    letter-spacing: 3px;
    padding: 10px 20px;
}

/* Program Info */
.program-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    gap: 40px;
}

/* Program Specs */
.program-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.program-specs li {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

.spec-label {
    color: #C9A227;
    font-family: var(--font-title);
    letter-spacing: 1px;
    min-width: 100px;
}

.spec-value {
    color: #ccc;
}

.spec-value.highlight {
    color: var(--accent-red);
    font-weight: 700;
}

/* Objective */
.objective-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.objective-title::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #C9A227, var(--accent-red));
}

.objective-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Program CTA */
.program-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(90deg, var(--accent-red), #5a0207);
    color: white;
    padding: 18px 35px;
    font-family: var(--font-title);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    border: none;
}

.program-cta i {
    transition: transform 0.3s ease;
}

.program-cta:hover {
    background: linear-gradient(90deg, #5a0207, var(--accent-red));
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(119, 3, 9, 0.4);
}

.program-cta:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {

    .program-detail-container,
    .program-detail-container.reverse {
        grid-template-columns: 1fr;
    }

    .program-image {
        height: 300px;
    }

    .program-image-overlay,
    .program-detail-container.reverse .program-image-overlay {
        background: linear-gradient(to top, rgba(10, 10, 12, 0.99) 0%, transparent 100%);
    }

    .program-info {
        padding: 40px 5%;
    }

    .objective-title {
        font-size: 2rem;
    }
}

.kine-dropdown-menu .dropdown-header {
    display: block;
    padding: 15px 25px 5px;
    font-size: 0.85rem;
    color: #ff4d4d;
    /* Rojo más brillante para mejor visibilidad */
    font-family: var(--font-title);
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: default;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Separador sutil */
    margin-bottom: 5px;
    pointer-events: none;
    font-weight: 700;
}

.kine-dropdown-menu .dropdown-header:first-child {
    padding-top: 5px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    /* Verde oficial WhatsApp */
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    /* Superpone a todo */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    /* Verde oscuro hover */
    transform: scale(1.1);
    color: #fff;
    box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(30, 30, 35, 0.95);
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    border-right: 5px solid transparent;
    width: auto;
    /* Permitir ancho automático */
    min-width: 120px;
    /* Ancho mínimo para evitar cortes */
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* FAQ Section */
.faq-section {
    padding: 80px 5%;
    background-color: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-red);
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-question.active {
    color: var(--accent-red);
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-right: 20px;
}

.faq-answer p {
    margin: 0 0 20px;
    color: #ccc;
    line-height: 1.6;
}

/* Countdown Timer */
.countdown-container {
    margin-bottom: 30px;
}

.countdown-flex {
    display: flex;
    flex-direction: row;
    /* Forzar fila */
    gap: 15px;
    margin-bottom: 1.5rem;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 6px;
    min-width: 80px;
    flex: 0 1 auto;
    /* No estirar */
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.time-val {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: white;
    line-height: 1;
    font-weight: 700;
}

.time-label {
    font-size: 0.8rem;
    color: var(--accent-red);
    letter-spacing: 2px;
    margin-top: 5px;
    font-weight: 500;
}

/* Secondary CTA (Download) */
.download-cta {
    background: transparent;
    border: 2px solid var(--accent-red);
    color: var(--text-light);
}

.download-cta:hover {
    background: rgba(119, 3, 9, 0.2);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.download-cta i {
    margin-left: 10px;
}

/* Ensure flex gap works in old browsers if needed */
.gap-3 {
    gap: 15px;
}

/* Regulation Page Styles */
.regulation-section {
    padding: 140px 20px 80px;
    /* Espacio para header fijo */
    max-width: 900px;
    margin: 0 auto;
    color: #e0e0e0;
}

.page-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.section-title.color-red {
    color: var(--accent-red);
    font-size: 1.8rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.regulation-index {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
}

.regulation-index h4 {
    color: var(--accent-red);
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.regulation-index p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
    cursor: pointer;
    transition: color 0.3s ease;
    display: block;
}

.regulation-index p:hover {
    color: var(--accent-red);
    padding-left: 5px;
}

.chapter-title {
    background: linear-gradient(90deg, rgba(119, 3, 9, 0.3), transparent);
    border-left: 4px solid var(--accent-red);
    padding: 15px 20px;
    color: white;
    font-family: var(--font-title);
    font-size: 1.4rem;
    margin: 60px 0 30px;
    border-bottom: 1px solid rgba(119, 3, 9, 0.5);
    border-radius: 0 5px 5px 0;
}

.article-title {
    color: var(--accent-red);
    font-weight: 700;
    margin-right: 5px;
    font-size: 1.1rem;
    font-family: var(--font-title);
}

.regulation-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
    font-weight: 300;
}

.regulation-section ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 30px;
}

.regulation-section li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.regulation-section li::before {
    content: "\f0da";
    /* FontAwesome Chevron */
    font-family: FontAwesome;
    color: var(--accent-red);
    position: absolute;
    left: 0;
    top: 2px;
}