/* Reset y Variables CSS */
:root {
    /* Colores principales de la marca */
    --primary-color: #4f46e5;
    --primary-dark: #3730a3;
    --primary-light: #6366f1;
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    --secondary-light: #34d399;
    
    /* Paleta extendida para tests específicos */
    --health-red: #ef4444;
    --health-red-dark: #dc2626;
    --health-red-light: #f87171;
    
    --health-purple: #8b5cf6;
    --health-purple-dark: #7c3aed;
    --health-purple-light: #a78bfa;
    
    --health-blue: #3b82f6;
    --health-blue-dark: #2563eb;
    --health-blue-light: #60a5fa;
    
    --health-green: #10b981;
    --health-green-dark: #059669;
    --health-green-light: #34d399;
    
    --health-orange: #f59e0b;
    --health-orange-dark: #d97706;
    --health-orange-light: #fbbf24;
    
    --health-teal: #14b8a6;
    --health-teal-dark: #0d9488;
    --health-teal-light: #2dd4bf;
    
    /* Colores de texto mejorados */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --text-muted: #cbd5e1;
    
    /* Fondos mejorados */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-gradient: linear-gradient(135deg, #4f46e5 0%, #10b981 100%);
    --bg-gradient-light: linear-gradient(135deg, #6366f1 0%, #34d399 100%);
    
    /* Bordes y divisores */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --border-dark: #cbd5e1;
    
    /* Sombras mejoradas */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Estados de color */
    --success-color: #10b981;
    --success-bg: #d1fae5;
    --warning-color: #f59e0b;
    --warning-bg: #fef3c7;
    --error-color: #ef4444;
    --error-bg: #fee2e2;
    --info-color: #3b82f6;
    --info-bg: #dbeafe;
    
    /* Bordes redondeados */
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    --border-radius-full: 9999px;
    
    /* Transiciones */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-gradient);
    overflow-x: hidden;
    flex: 1 0 auto;
}

.volver-inicio-btn {
    position: fixed;
    top: 32px;
    left: 32px;
    z-index: 2001;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: rgba(255,255,255,0.85);
    color: #222;
    font-weight: 600;
    font-size: 1.08rem;
    border-radius: 2rem;
    box-shadow: 0 4px 18px 0 rgba(58,28,113,0.08);
    text-decoration: none;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    border: 2px solid rgba(79, 70, 229, 0.13);
}

.rosenberg-btn {
    max-width: 250px;
    width: 90%;
    background: linear-gradient(90deg, var(--health-orange-light) 0%, var(--health-red-light) 100%);
    color: var(--text-primary);
    font-weight: 700;
    border: none;
    border-radius: var(--border-radius-full);
    padding: 15px 0;
    font-size: 1.15rem;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.rosenberg-btn:hover {
    background: linear-gradient(90deg, var(--health-orange) 0%, var(--health-red) 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.volver-inicio-btn:hover {
    background: rgba(79,70,229,0.13);
    color: #4f46e5;
    box-shadow: 0 8px 26px 0 rgba(10, 60, 140, 0.16);
}

.volver-inicio-btn i {
    font-size: 1.1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header y Navegación */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section Modern Colorful */
.hero-minimal {
    background: transparent;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.10) 0%, rgba(255,255,255,0) 70%),
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.06) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.hero-content-minimal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    max-width: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.umag-logo-container {
    width: 360px;
    margin-bottom: 28px;
    align-self: flex-start;
    display: flex;
    justify-content: flex-start;
}

.umag-logo {
    width: 100%;
    max-width: 360px;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(58,28,113,0.08));
    background: white;
    border-radius: 14px;
    padding: 8px 8px 8px 8px;
    box-shadow: 0 4px 18px 0 rgba(58,28,113,0.08);
}


.hero-title-minimal {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -2px;
    text-shadow: 0 2px 24px rgba(58,28,113,0.10), 0 1px 0 #fff;
}

.hero-title-minimal .highlight {
    color: #ffe156;
    background: linear-gradient(90deg,#ffe156 0%,#ff6f91 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    text-shadow: 0 0 16px rgba(255, 111, 145, 0.13);
}

.hero-description-minimal {
    font-size: 1.35rem;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.93;
    max-width: 500px;
    font-weight: 400;
}

.hero-buttons-minimal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.fitness-btn-test {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: #222;
    font-weight: 700;
    font-size: 1.15rem;
    border: none;
    border-radius: 28px;
    padding: 19px 28px;
    margin-bottom: 0;
    min-width: 166px;
    max-width: 256px;
    cursor: pointer;
    position: relative;
    overflow: visible;
    background: linear-gradient(100deg,#b6eaff 0%,#0a7cc7 100%);
    box-shadow: 0 8px 26px 0 rgba(10, 60, 140, 0.22), 0 2px 8px 0 rgba(0,0,0,0.10);
    border: 2px solid rgba(255,255,255,0.38);
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s, border 0.18s;
    will-change: transform, box-shadow;
}

.fitness-btn-test:hover, .fitness-btn-test:focus {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 18px 38px 0 rgba(10, 60, 140, 0.36), 0 4px 12px 0 rgba(0,0,0,0.18), 0 2px 8px 0 rgba(255,255,255,0.16) inset;
    border: 2px solid rgba(255,255,255,0.55);
    filter: brightness(1.10) saturate(1.18);
}

.fitness-btn-test:after {
    border-radius: 28px;
}
.fitness-btn-svg {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.23);
    border-radius: 50%;
    box-shadow: 0 1px 8px 0 rgba(10,124,199,0.09);
    margin-right: 0px;
    flex-shrink: 0;
}
.fitness-btn-svg svg {
    width: 27px;
    height: 27px;
    display: block;
}
.fitness-btn-label {
    font-size: 1em;
    font-weight: 800;
    color: #174fa3;
    letter-spacing: 0.5px;
    text-align: left;
    line-height: 1.1;
    display: flex;
    align-items: center;
}


.fitness-btn-test:after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    background: linear-gradient(120deg,rgba(255,255,255,0.22) 0%,rgba(255,255,255,0.08) 100%);
    opacity: 0.7;
    border-radius: 56px;
    color: #2d2d2d;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px 0 rgba(255,111,145,0.18);
}

.btn-secondary-minimal {
    background: rgba(255,255,255,0.13);
    color: #fff;
    border: 2px solid #fff5;
    box-shadow: 0 2px 12px rgba(255,225,86,0.08);
}

.btn-secondary-minimal:hover, .btn-secondary-minimal:focus {
    background: rgba(255,255,255,0.22);
    border-color: #ffe156;
    color: #2d2d2d;
    transform: translateY(-2px) scale(1.04);
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

.test-card-minimal {
    background: rgba(255,255,255,0.20);
    backdrop-filter: blur(18px) saturate(120%);
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 28px;
    box-shadow: 0 6px 32px 0 rgba(58,28,113,0.09);
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    height: 170px;
    min-height: 170px;
    max-height: 170px;
    padding: 1.3rem 1.1rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: box-shadow 0.18s, transform 0.18s, background 0.18s;
    z-index: 1;
    text-align: center;
    gap: 0.4rem;
}

.test-card-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg,rgba(255,225,86,0.07) 0%,rgba(255,111,145,0.07) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.test-card-minimal:hover, .test-card-minimal:focus {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255,255,255,0.27);
    box-shadow: 0 16px 48px 0 rgba(255,111,145,0.15), 0 2px 8px 0 rgba(58,28,113,0.08);
    border-color: #ffe156;
    z-index: 2;
}

.test-card-minimal:hover::before, .test-card-minimal:focus::before {
    opacity: 1;
}

.test-icon-minimal {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg,#ffe156 0%,#ff6f91 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 4px 18px 0 rgba(255,111,145,0.13);
    border: 2.5px solid #fff5;
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
}

.test-card-minimal:hover .test-icon-minimal, .test-card-minimal:focus .test-icon-minimal {
    background: linear-gradient(135deg,#ff6f91 0%,#ffe156 100%);
    transform: scale(1.09) rotate(-4deg);
    box-shadow: 0 8px 32px 0 rgba(255,225,86,0.13);
}

.test-icon-minimal i {
    font-size: 2.1rem;
    color: #fff;
    filter: drop-shadow(0 2px 10px #ffe15688);
}

.test-card-minimal h3 {
    font-size: 1.25rem;
    margin: 0.2rem 0 0.3rem 0;
    font-weight: 700;
    color: #3a1c71;
    letter-spacing: -1px;
    z-index: 2;
    position: relative;
    width: 100%;
    text-align: center;
}

.test-card-minimal p {
    font-size: 1.02rem;
    opacity: 0.84;
    margin: 0.2rem 0 0 0;
    line-height: 1.4;
    color: #2d2d2d;
    z-index: 2;
    position: relative;
    width: 100%;
    text-align: center;
}

@media (max-width: 1024px) {
    .hero-content-minimal {
        grid-template-columns: 1fr 360px;
        gap: 48px;
        padding: 0 24px;
    }
    .hero-title-minimal {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content-minimal {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 20px;
    }
    .hero-left {
        align-items: center;
        text-align: center;
    }
    .umag-logo-container {
        width: 70%;
        max-width: 300px;
        margin: 0 auto 18px auto;
        justify-content: center;
    }
    .hero-title-minimal {
        font-size: 2.4rem;
        letter-spacing: -1px;
        margin-bottom: 18px;
    }
    .hero-description-minimal {
        font-size: 1.05rem;
        max-width: 100%;
        margin-bottom: 24px;
    }
    .hero-right {
        max-width: 100%;
        width: 100%;
    }
    .test-card-minimal {
        width: 100%;
        min-width: 0;
        max-width: none;
        height: auto;
        min-height: 0;
        max-height: none;
        padding: 1rem;
    }
    .test-icon-minimal {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }
    .test-icon-minimal i {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .umag-logo-container {
        width: 88%;
        max-width: 260px;
    }
    .hero-title-minimal {
        font-size: 2rem;
    }
    .hero-description-minimal {
        font-size: 0.98rem;
    }
    .test-card-minimal h3 {
        font-size: 1.1rem;
    }
    .test-card-minimal p {
        font-size: 0.95rem;
    }
}

/* Tests Section */
.fitness-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2.5rem;
    margin-top: 0.5rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.15);
    letter-spacing: 0.5px;
}

.#tests.section {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 0;
    margin-top: 2cm;
    margin-bottom: 0;
}
    padding: 6rem 0;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.tests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.test-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.test-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.test-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.test-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.test-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.test-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.test-features {
    list-style: none;
    margin-bottom: 2rem;
}

.test-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.test-features i {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.btn-test {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-test:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    opacity: 0.9;
}

.btn-link {
    text-decoration: none;
    display: inline-flex;
}

.test-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition);
}

.test-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.test-card-link .test-card {
    cursor: pointer;
}

.test-card-link:hover .test-card {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Estilos para la card clickeable de condición física */
.fitness-clickable {
    transition: var(--transition);
}

.fitness-clickable:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.btn-test-display {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    font-size: 1rem;
}

.fitness-clickable:hover .btn-test-display {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Estilos para subtests de condición física */
.main-fitness-card {
    grid-column: 1 / -1;
    max-width: none;
}

.fitness-subtests {
    margin-top: 1.5rem;
}

.subtest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.subtest-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.subtest-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    background: white;
    box-shadow: var(--shadow-md);
}

.subtest-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.subtest-icon i {
    font-size: 1.25rem;
    color: white;
}

.subtest-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.subtest-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.btn-subtest {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    font-size: 0.875rem;
}

.btn-subtest:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.general-fitness-test {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px dashed var(--border-color);
}

.btn-test-complete {
    background: linear-gradient(135deg, var(--accent-color), #f97316);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
}

.btn-test-complete:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    opacity: 0.9;
}

/* Estilos para modal de subtests de condición física */
.fitness-subtests-modal {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.subtest-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.subtest-modal-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.subtest-modal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: var(--transition);
}

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

.subtest-modal-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: white;
    box-shadow: var(--shadow-lg);
}

.subtest-modal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.subtest-modal-card:hover .subtest-modal-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

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

.subtest-modal-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.subtest-modal-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.complete-test-modal {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px dashed var(--border-color);
}

.complete-test-card {
    background: linear-gradient(135deg, var(--accent-color), #f97316);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    color: white;
    position: relative;
    overflow: hidden;
}

.complete-test-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

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

.complete-test-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.complete-test-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.complete-test-card:hover .complete-test-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.complete-test-icon i {
    font-size: 1.75rem;
    color: white;
}

.complete-test-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.complete-test-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Estilos para la página de condición física */
.fitness-hero {
    background: transparent;
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
}

.fitness-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.fitness-hero .hero-title i {
    font-size: 3rem;
}

.fitness-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.fitness-hero .hero-description {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.fitness-tests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.fitness-test-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.fitness-test-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: var(--transition);
}

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

.fitness-test-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.fitness-test-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: var(--transition);
}

.fitness-test-card:hover .fitness-test-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.fitness-test-icon i {
    font-size: 2rem;
    color: white;
}

.fitness-test-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.fitness-test-card > p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.test-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.test-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.test-features i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.btn-fitness-test {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    font-size: 1rem;
}

.btn-fitness-test:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.complete-fitness-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px dashed var(--border-color);
}

.complete-fitness-card {
    background: linear-gradient(135deg, var(--accent-color), #f97316);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.complete-fitness-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: var(--transition);
}

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

.complete-fitness-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.complete-fitness-icon i {
    font-size: 2.5rem;
    color: white;
}

.complete-fitness-content {
    flex: 1;
}

.complete-fitness-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.complete-fitness-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.btn-complete-fitness {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.btn-complete-fitness:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

.progress-bar {
    background-color: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
    height: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    width: 10%;
}

.progress-text {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.modal-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-actions .btn {
    flex: 1;
}

/* Results Section */
.results-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

.results-container {
    margin-top: 2rem;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    border: 2px dashed var(--border-color);
}

.no-results i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, white 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section i {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Estilos para preguntas y resultados */
.question-content {
    margin-bottom: 2rem;
}

.question-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.question-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.option-label {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.option-label:hover {
    border-color: var(--primary-color);
    background: rgba(79, 70, 229, 0.05);
}

.option-label input[type="radio"] {
    margin-right: 0.75rem;
    transform: scale(1.2);
    accent-color: var(--primary-color);
}

.option-label input[type="radio"]:checked + .option-text {
    font-weight: 600;
    color: var(--primary-color);
}

.option-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Estilos para resultados del test */
.test-result {
    text-align: center;
    padding: 2rem 0;
}

.result-header {
    margin-bottom: 2rem;
}

.result-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.result-header h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin: 0;
}

.result-score {
    margin-bottom: 2rem;
}

.score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    border: 8px solid;
}

.score-circle.excellent {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
}

.score-circle.good {
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
}

.score-circle.regular {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
}

.score-circle.poor {
    border-color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
}

.score-percentage {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.score-level {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.score-circle.excellent .score-level {
    color: var(--secondary-color);
}

.score-circle.good .score-level {
    color: #3b82f6;
}

.score-circle.regular .score-level {
    color: var(--accent-color);
}

.score-circle.poor .score-level {
    color: #ef4444;
}

.result-details {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    text-align: left;
}

.result-details p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
}

.result-recommendations {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.result-recommendations h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.result-recommendations h4 i {
    color: var(--accent-color);
}

.result-recommendations ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.result-recommendations li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    line-height: 1.5;
}

.result-recommendations li:last-child {
    border-bottom: none;
}

.result-recommendations li::before {
    content: "💡";
    margin-right: 0.5rem;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Estilos para la sección de resultados */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.result-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.result-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.result-card-header h4 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-primary);
    flex: 1;
}

.result-date {
    font-size: 0.875rem;
    color: var(--text-light);
    white-space: nowrap;
    margin-left: 1rem;
}

.result-card-score {
    text-align: center;
    padding: 1rem;
    border-radius: var(--border-radius);
    position: relative;
}

.result-card-score.excellent {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 2px solid var(--secondary-color);
}

.result-card-score.good {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
    border: 2px solid #3b82f6;
}

.result-card-score.regular {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    border: 2px solid var(--accent-color);
}

.result-card-score.poor {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border: 2px solid #ef4444;
}

.result-card-score .score {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.result-card-score .score-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .question-title {
        font-size: 1.125rem;
    }
    
    .option-label {
        padding: 0.875rem;
    }
    
    .option-text {
        font-size: 0.9rem;
    }
    
    .score-circle {
        width: 120px;
        height: 120px;
    }
    
    .score-percentage {
        font-size: 1.5rem;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .subtest-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .subtest-card {
        padding: 1rem;
    }
    
    .subtest-icon {
        width: 40px;
        height: 40px;
    }
    
    .subtest-icon i {
        font-size: 1rem;
    }
    
    .subtest-card h4 {
        font-size: 1rem;
    }
    
    .subtest-card p {
        font-size: 0.8rem;
    }
    
    .subtest-modal-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .subtest-modal-card {
        padding: 1.5rem;
    }
    
    .subtest-modal-icon {
        width: 50px;
        height: 50px;
    }
    
    .subtest-modal-icon i {
        font-size: 1.25rem;
    }
    
    .subtest-modal-card h4 {
        font-size: 1.125rem;
    }
    
    .subtest-modal-card p {
        font-size: 0.85rem;
    }
    
    .complete-test-card {
        padding: 2rem;
    }
    
    .complete-test-icon {
        width: 60px;
        height: 60px;
    }
    
    .complete-test-icon i {
        font-size: 1.5rem;
    }
    
    .complete-test-card h4 {
        font-size: 1.25rem;
    }
    
    .fitness-hero {
        padding: 6rem 0 3rem;
    }
    
    .fitness-hero .hero-title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .fitness-hero .hero-title i {
        font-size: 2rem;
    }
    
    .fitness-hero .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .fitness-tests-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .fitness-test-card {
        padding: 2rem;
    }
    
    .fitness-test-icon {
        width: 70px;
        height: 70px;
    }
    
    .fitness-test-icon i {
        font-size: 1.75rem;
    }
    
    .complete-fitness-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }
    
    .complete-fitness-content h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .test-card {
        padding: 1.5rem;
    }
    
    .modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .subtest-modal-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .subtest-modal-card {
        padding: 1.25rem;
    }
    
    .complete-test-card {
        padding: 1.5rem;
    }
    
    .complete-test-card h4 {
        font-size: 1.125rem;
    }
    
    .complete-test-card p {
        font-size: 0.9rem;
    }
    
    .fitness-hero .hero-title {
        font-size: 2rem;
    }
    
    .fitness-hero .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .fitness-tests-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .fitness-test-card {
        padding: 1.5rem;
    }
    
    .complete-fitness-card {
        padding: 2rem;
    }
    
    .complete-fitness-content h3 {
        font-size: 1.5rem;
    }
    
    .complete-fitness-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    .result-recommendations {
        padding: 1rem;
    }
    
    .result-card {
        padding: 1rem;
    }
    
    .result-card-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .result-date {
        margin-left: 0;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

html {
    scroll-behavior: smooth;
}
