/* Import Japanese Font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');

/* CSS Variables - Manteniendo la paleta del proyecto */
:root {
    --dark-bg: #1a1f2c;
    --darker-bg: #131722;
    --card-bg: #1c2230;
    --text-primary: #ffffff;
    --text-secondary: #a1a5b7;
    --accent-blue: #0095e8;
    --accent-green: #50cd89;
    --accent-red: #e74c3c;
    --gold: #ffd700;
    
    /* Nuevos colores para secciones claras */
    --light-bg-1: #f8f9fa;
    --light-bg-2: #e9ecef;
    --pure-white: #ffffff;
    --light-text-primary: #212529;
    --light-text-secondary: #6c757d;
    --light-border: #dee2e6;
    --accent-red-light: #E00F1C;
}

/* ============================================
   LOADING OVERLAY - DINÁMICO VIA JS
   ============================================ */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Estados iniciales manejados por JavaScript */
body:not(.loaded) {
    overflow: hidden;
}

.hero-container,
.navbar,
.social-icons {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded .hero-container,
body.loaded .navbar,
body.loaded .social-icons {
    opacity: 1;
}

.loading-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    color: var(--text-primary);
}

.loading-logo {
    margin-bottom: 30px;
}

.loading-flor {
    width: 80px;
    height: 80px;
    animation: loadingRotate 2s linear infinite;
    filter: brightness(1.2);
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.loading-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #E00F1C, #ff1e2d);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

@keyframes loadingRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   HERO CONTAINER Y BASE
   ============================================ */

.hero-container {
    position: relative;
    height: 100vh;
    background: url('/img/home/background.png') center center / cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   SOCIAL MEDIA ICONS
   ============================================ */

.social-icons {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.5s ease 0.3s;
}

body.loaded .social-icons {
    opacity: 1;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #E00F1C;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border-radius: 5px;
}

.social-icon:hover {
    background: #c00e18;
    transform: translateX(8px);
    color: white;
}

/* ============================================
   BACKGROUND ELEMENTS
   ============================================ */

.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Japanese Kanjis */
.kanji {
    position: absolute;
    font-family: 'Noto Sans JP', serif;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    user-select: none;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.01));
}

.kanji-1 {
    top: 15%;
    right: 5%;
    left: auto;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-family: 'Noto Sans JP', serif;
    font-weight: 900;
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.08);
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.6);
    transform: rotate(5deg);
    animation: floatVertical 10s ease-in-out infinite;
    letter-spacing: 0.2em;
    user-select: none;
}

.kanji-2 {
    bottom: 5%;
    right: -10%;
    font-size: 12rem;
    transform: rotate(20deg);
    animation: floatSlow 10s ease-in-out infinite reverse;
}

.kanji-3 {
    top: 50%;
    left: 65%;
    font-size: 8rem;
    transform: rotate(-10deg);
    animation: floatSlow 6s ease-in-out infinite;
}

/* Cherry Blossom Branches */
.rama-izquierda {
    position: absolute;
    top: 80px;
    left: -50px;
    width: 300px;
    height: 400px;
    background: url('/img/home/ramaiz.png') no-repeat center;
    background-size: contain;
    animation: sway 4s ease-in-out infinite;
}

.rama-derecha {
    position: absolute;
    bottom: 0;
    right: -50px;
    width: 300px;
    height: 400px;
    background: url('/img/home/ramader.png') no-repeat center;
    background-size: contain;
    animation: sway 4s ease-in-out infinite reverse;
}

/* ============================================
   LOGO CONTAINER
   ============================================ */

.logo-container {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 500px;
    height: 500px;
}

.logo-element {
    position: absolute;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.logo-img {
    object-fit: contain;
}

/* Estados iniciales para todos los elementos del logo */
body:not(.loaded) .logo-element {
    opacity: 0;
}

/* Flor de Cerezo - Base/Marco */
.logo-element.flor-cerezo {
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    z-index: 1;
}

.logo-element.flor-cerezo .logo-img {
    width: 100%;
    height: 100%;
}

/* Sol - Fondo circular */
.logo-element.sol {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    z-index: 2;
}

.logo-element.sol .logo-img {
    width: 100%;
    height: 100%;
}

/* Lobo Marino - Figura principal */
.logo-element.lobo-marino {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 348px;
    height: 348px;
    z-index: 3;
}

.logo-element.lobo-marino .logo-img {
    width: 100%;
    height: 100%;
}

/* Texto Club - Superior */
.logo-element.texto-club {
    top: 28%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: auto;
    z-index: 4;
}

.logo-element.texto-club .logo-img {
    width: 100%;
    height: auto;
}

/* Texto Valdivia - Inferior */
.logo-element.texto-valdivia {
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: auto;
    z-index: 5;
}

.logo-element.texto-valdivia .logo-img {
    width: 100%;
    height: auto;
}

/* ============================================
   LOGO ANIMATIONS
   ============================================ */

/* Desktop Animations */
@media (min-width: 769px) {
    body.loaded .logo-element.flor-cerezo {
        animation: 
            appearFlor 0.8s ease-out 0.5s forwards,
            rotateClockwise 20s linear 1.3s infinite;
    }

    body.loaded .logo-element.sol {
        animation: 
            appearSol 0.8s ease-out 1.5s forwards,
            rotateCounterClockwise 25s linear 2.3s infinite;
    }

    body.loaded .logo-element.lobo-marino {
        animation: 
            appearLobo 0.8s ease-out 2.5s forwards,
            breathing 3s ease-in-out 3.3s infinite;
    }

    body.loaded .logo-element.texto-club {
        animation: appearTexto 1s ease-out 3.5s forwards;
    }

    body.loaded .logo-element.texto-valdivia {
        animation: appearSlideUp 0.8s ease-out 4.5s forwards;
    }
}

/* Mobile Animations - Inmediato con rotaciones */
@media (max-width: 768px) {
    body.loaded .logo-element {
        opacity: 1;
        animation-delay: 0s !important;
    }

    body.loaded .logo-element.flor-cerezo {
        animation: rotateClockwise 20s linear infinite;
    }

    body.loaded .logo-element.sol {
        animation: rotateCounterClockwise 25s linear infinite;
    }

    body.loaded .logo-element.lobo-marino {
        animation: breathing 3s ease-in-out infinite;
    }
}

/* ============================================
   HERO CONTENT
   ============================================ */

.hero-content {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 15;
    max-width: 700px;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 1s ease;
}

body.loaded .hero-content {
    opacity: 1;
}

.subtitle {
    color: #E00F1C;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
}

.description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.main-cta {
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    letter-spacing: 1px;
    min-width: 150px;
}

.main-cta.primary {
    background: #E00F1C;
    color: white;
}

.main-cta.primary:hover {
    background: #c00e18;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(224, 15, 28, 0.4);
    color: white;
}

.main-cta.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    position: relative;
    overflow: hidden;
}

.main-cta.secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #E00F1C;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.main-cta.secondary:hover {
    background: #E00F1C;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(224, 15, 28, 0.4);
    border-color: #E00F1C;
}

.main-cta.secondary:hover::before {
    width: 300px;
    height: 300px;
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 15;
    opacity: 0;
    transition: opacity 1s ease 1s;
}

body.loaded .scroll-indicator {
    opacity: 1;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SECTIONS PREVIEW - BLANCO SUAVE
   ============================================ */

.sections-preview {
    background: var(--light-bg-1);
    color: var(--light-text-primary);
    padding: 80px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sections-preview .preview-card {
    background: var(--pure-white);
    color: var(--light-text-primary);
    border: 1px solid var(--light-border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
}

.sections-preview .preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-red-light);
}

.sections-preview .preview-icon {
    color: var(--accent-red-light);
    font-size: 3rem;
    margin-bottom: 20px;
}

.sections-preview .preview-card h3 {
    color: var(--light-text-primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.sections-preview .preview-card p {
    color: var(--light-text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.sections-preview .preview-link {
    color: var(--accent-red-light);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.sections-preview .preview-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red-light);
    transition: width 0.3s ease;
}

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

.sections-preview .preview-link:hover {
    color: #c00e18;
    transform: translateX(5px);
}

/* ============================================
   STATS SECTION - CORREGIDO
   ============================================ */

.stats-section {
    background: var(--light-bg-2);
    color: var(--light-text-primary);
    padding: 60px 0;
    position: relative;
}

.stats-section .stat-item {
    text-align: center;
    padding: 20px;
}

.stats-section .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-red-light);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    /* REMOVIDO EL ::after QUE CAUSABA DUPLICACIÓN */
}

.stats-section .stat-label {
    color: var(--light-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ============================================
   SPONSORS SECTION
   ============================================ */

.sponsors-section {
    background: var(--pure-white);
    color: var(--light-text-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sponsors-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(224, 15, 28, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.sponsors-section .container {
    position: relative;
    z-index: 2;
}

.sponsors-section h2 {
    color: var(--light-text-primary);
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
}

.sponsors-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red-light), #c00e18);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--light-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-style: italic;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.sponsor-item {
    background: var(--light-bg-1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 15, 28, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.sponsor-item:hover::before {
    left: 100%;
}

.sponsor-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.sponsor-item.real-sponsor {
    background: var(--pure-white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.sponsor-item.real-sponsor:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-red-light);
}

.sponsor-logo-container {
    margin-bottom: 20px;
}

.placeholder-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-bg-1);
    border-radius: 10px;
    border: 2px dashed var(--light-border);
    transition: all 0.3s ease;
}

.placeholder-logo i {
    font-size: 2.5rem;
    color: var(--accent-red-light);
    margin-bottom: 10px;
}

.placeholder-logo span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--light-text-secondary);
    text-align: center;
    line-height: 1.3;
}

.sponsor-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light-text-primary);
    margin-bottom: 8px;
}

.sponsor-info p {
    font-size: 0.9rem;
    color: var(--light-text-secondary);
    margin: 0;
    font-style: italic;
}

.sponsor-item.sponsor-placeholder {
    background: linear-gradient(135deg, var(--light-bg-1) 0%, var(--light-bg-2) 100%);
    border: 2px dashed var(--light-border);
}

.sponsor-item.sponsor-placeholder:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red-light);
    box-shadow: 0 15px 30px rgba(224, 15, 28, 0.1);
}

.placeholder-icon {
    margin-bottom: 20px;
}

.placeholder-icon i {
    font-size: 3rem;
    color: var(--light-text-secondary);
    transition: all 0.3s ease;
}

.sponsor-item.sponsor-placeholder:hover .placeholder-icon i {
    color: var(--accent-red-light);
    transform: scale(1.1) rotate(5deg);
}

.placeholder-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-text-secondary);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.placeholder-text p {
    font-size: 0.85rem;
    color: var(--light-text-secondary);
    margin: 0;
    opacity: 0.8;
}

.sponsor-cta {
    background: var(--light-bg-1);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid var(--light-border);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sponsor-cta h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--light-text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.sponsor-cta p {
    font-size: 1rem;
    color: var(--light-text-secondary);
    margin-bottom: 25px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.btn-sponsor-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--accent-red-light);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-sponsor-contact:hover {
    background: #c00e18;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 15, 28, 0.3);
    color: white;
}

.btn-sponsor-contact i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-sponsor-contact:hover i {
    transform: translateX(3px);
}

/* ============================================
   SECCIÓN CUERPO TÉCNICO - ESTILO JAPONÉS MODERNO
   ============================================ */

.technical-team-section {
    background: linear-gradient(135deg, #1a1f2c 0%, #2c1810 50%, #1a1f2c 100%);
    color: var(--text-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Pétalos animados */
.cherry-petals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.petal {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(255, 182, 193, 0.6);
    border-radius: 50% 0 50% 0;
    transform: rotate(45deg);
    animation: falling 15s infinite linear;
    opacity: 0;
}

.petal:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.petal:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 14s; }
.petal:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 16s; }
.petal:nth-child(4) { left: 40%; animation-delay: 6s; animation-duration: 13s; }
.petal:nth-child(5) { left: 50%; animation-delay: 8s; animation-duration: 15s; }
.petal:nth-child(6) { left: 60%; animation-delay: 10s; animation-duration: 11s; }
.petal:nth-child(7) { left: 70%; animation-delay: 12s; animation-duration: 17s; }
.petal:nth-child(8) { left: 80%; animation-delay: 14s; animation-duration: 13s; }
.petal:nth-child(9) { left: 90%; animation-delay: 16s; animation-duration: 14s; }

@keyframes falling {
    0% {
        opacity: 0;
        transform: translateY(-100px) rotate(45deg) scale(0.8);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(calc(100vh + 100px)) rotate(225deg) scale(1.2);
    }
}


/* Elementos decorativos japoneses modernos */
.technical-team-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 15, 28, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.technical-team-section::after {
    content: '道';
    position: absolute;
    top: 10%;
    left: -5%;
    font-family: 'Noto Sans JP', serif;
    font-size: 20rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: 1;
    writing-mode: vertical-rl;
    text-orientation: upright;
    transform: rotate(-10deg);
}

.technical-team-section .container {
    position: relative;
    z-index: 2;
}

/* Título estilo japonés moderno */
.technical-team-section h2 {
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 20px;
    font-size: 3.2rem;
    font-weight: 900;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.technical-team-section h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #E00F1C, transparent);
    border-radius: 2px;
}

.technical-team-section h2::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.team-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 80px;
    font-style: italic;
    font-weight: 300;
}

/* ============================================
   COACH CARDS - DISEÑO JAPONÉS MODERNO
   ============================================ */

.technical-team-section {
    background: linear-gradient(135deg, #1a1f2c 0%, #232936 50%, #1a1f2c 100%);
    color: var(--text-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Elementos decorativos japoneses modernos */
.technical-team-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 15, 28, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.technical-team-section::after {
    content: '先生';
    position: absolute;
    top: 15%;
    right: 5%;
    font-family: 'Noto Sans JP', serif;
    font-size: 18rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: 1;
    writing-mode: vertical-rl;
    text-orientation: upright;
    transform: rotate(5deg);
}

.technical-team-section .container {
    position: relative;
    z-index: 2;
}

/* Título estilo japonés moderno */
.technical-team-section h2 {
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 20px;
    font-size: 3.2rem;
    font-weight: 900;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.technical-team-section h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #E00F1C, transparent);
    border-radius: 2px;
}

.technical-team-section h2::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.team-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 80px;
    font-style: italic;
    font-weight: 300;
}

/* ============================================
   COACH CARDS - DISEÑO JAPONÉS MODERNO
   ============================================ */

.coach-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Efecto de papel japonés */
.coach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 15, 28, 0.05), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

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

.coach-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(224, 15, 28, 0.2);
    border-color: rgba(224, 15, 28, 0.3);
}

/* Variante para técnico principal - estilo sensei */
.coach-card.main-coach {
    background: linear-gradient(145deg, rgba(224, 15, 28, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(224, 15, 28, 0.3);
    position: relative;
}

.coach-card.main-coach::after {
    content: '先生';
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: 'Noto Sans JP', serif;
    font-size: 1.2rem;
    color: rgba(224, 15, 28, 0.6);
    font-weight: 700;
    writing-mode: vertical-rl;
    text-orientation: upright;
    z-index: 3;
}

.coach-card.main-coach:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(224, 15, 28, 0.2),
        0 0 0 2px rgba(224, 15, 28, 0.4);
}

/* ============================================
   IMÁGENES MÁS GRANDES Y PROMINENTES
   ============================================ */

.coach-image-container {
    position: relative;
    margin-bottom: 30px;
    z-index: 2;
    align-self: center;
}

.coach-image {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px rgba(224, 15, 28, 0.1);
}

.coach-card.main-coach .coach-image {
    width: 220px;
    height: 220px;
    border: 5px solid rgba(224, 15, 28, 0.4);
    box-shadow: 
        0 15px 40px rgba(224, 15, 28, 0.2),
        inset 0 0 0 3px rgba(224, 15, 28, 0.2);
}

.coach-card:hover .coach-image {
    transform: scale(1.1);
    border-color: rgba(224, 15, 28, 0.6);
    box-shadow: 
        0 15px 40px rgba(224, 15, 28, 0.3),
        inset 0 0 0 3px rgba(224, 15, 28, 0.3);
}

/* Efecto glow interno */
.coach-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
    z-index: 2;
}

.coach-card:hover .coach-image::before {
    opacity: 1;
}

.coach-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.coach-card:hover .coach-img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

/* Placeholder mejorado */
.coach-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(26, 31, 44, 0.8), rgba(44, 24, 16, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.coach-placeholder i {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: rgba(224, 15, 28, 0.7);
}

.coach-placeholder span {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

/* ============================================
   RANK BADGE ESTILO JAPONÉS
   ============================================ */

.coach-rank-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, #1a1a1a, #000000);
    color: white;
    border: 1px solid #d30505;
    border-radius: 30px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.coach-rank-badge.specialist {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    border-color: #C0C0C0;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(192, 192, 192, 0.3);
}

.coach-card:hover .coach-rank-badge {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 12px 30px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.4);
    border-color: #FFED4E;
}

.rank-text {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: white;
}

.rank-icon i {
    font-size: 1.1rem;
    color: #FFD700;
}

/* ============================================
   INFORMACIÓN DEL COACH
   ============================================ */

.coach-info {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 2;
    position: relative;
}

.coach-name {
    color: var(--text-primary);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coach-card.main-coach .coach-name {
    font-size: 1.8rem;
    color: #E00F1C;
    text-shadow: 0 2px 10px rgba(224, 15, 28, 0.3);
}

.coach-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.coach-credentials {
    margin-bottom: 25px;
}

.coach-credentials.compact {
    margin-bottom: 20px;
}

.credential-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.credential-item:hover {
    background: rgba(224, 15, 28, 0.1);
    border-color: rgba(224, 15, 28, 0.3);
    transform: translateX(5px);
}

.credential-item i {
    color: #E00F1C;
    font-size: 1.1rem;
    width: 18px;
    text-align: center;
}

.coach-bio {
    margin-bottom: 25px;
    flex: 1;
}

.coach-bio p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: center;
    font-style: italic;
}

.coach-specialties h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.specialty-tag {
    background: linear-gradient(135deg, rgba(224, 15, 28, 0.2), rgba(224, 15, 28, 0.1));
    color: #E00F1C;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 2px solid rgba(224, 15, 28, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specialty-tag:hover {
    background: linear-gradient(135deg, #E00F1C, #c00e18);
    color: white;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 15, 28, 0.4);
}


/* ============================================
   HORARIOS - ESTILO JAPONÉS MODERNO
   ============================================ */

.club-schedule-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.club-schedule-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 15, 28, 0.03), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.club-schedule-section:hover::before {
    left: 100%;
}

.schedule-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.schedule-header h3 {
    color: var(--text-primary);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.schedule-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #E00F1C, transparent);
    border-radius: 2px;
}

.schedule-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
    font-style: italic;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.schedule-day {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.schedule-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E00F1C, #ff1e2d);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.schedule-day:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(224, 15, 28, 0.3);
    box-shadow: 0 15px 35px rgba(224, 15, 28, 0.15);
}

.schedule-day:hover::before {
    opacity: 1;
}

.day-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.day-header h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day-icon {
    color: #E00F1C;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.schedule-day:hover .day-icon {
    transform: scale(1.2) rotate(10deg);
}

.schedule-times {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.time-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #E00F1C;
    transition: all 0.3s ease;
    position: relative;
}

.time-slot::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #E00F1C, #ff1e2d);
    border-radius: 0 2px 2px 0;
    transition: width 0.3s ease;
}

.time-slot:hover {
    background: rgba(224, 15, 28, 0.08);
    transform: translateX(8px);
}

.time-slot:hover::before {
    width: 8px;
}

.time-slot.closed {
    border-left-color: rgba(255, 255, 255, 0.3);
    opacity: 0.6;
}

.time-slot.closed::before {
    background: rgba(255, 255, 255, 0.3);
}

.time-slot .time {
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-slot.closed .time {
    color: rgba(255, 255, 255, 0.6);
}

.time-slot .category {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: right;
}

.time-slot.closed .category {
    color: rgba(255, 255, 255, 0.5);
}

.schedule-note {
    background: linear-gradient(135deg, rgba(224, 15, 28, 0.08), rgba(255, 30, 45, 0.05));
    border: 1px solid rgba(224, 15, 28, 0.2);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.note-icon {
    color: #E00F1C;
    font-size: 1.5rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.note-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.note-content strong {
    color: #ffffff;
    font-weight: 700;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: var(--light-bg-2);
    color: var(--light-text-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(224, 15, 28, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section h2 {
    color: var(--light-text-primary);
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red-light), #c00e18);
    border-radius: 2px;
}

/* Contact Info */
.contact-info {
    padding: 30px 0;
}

.contact-info h3 {
    color: var(--light-text-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-red-light);
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--pure-white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent-red-light);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-red-light), #ff1e2d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-icon i {
    color: white;
    font-size: 1.3rem;
}

.contact-details h4 {
    color: var(--light-text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--light-text-secondary);
    margin: 0;
    line-height: 1.5;
}

.contact-details a {
    color: var(--accent-red-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #c00e18;
    text-decoration: underline;
}

.contact-details small {
    font-size: 0.85rem;
    color: var(--light-text-secondary);
    opacity: 0.8;
}

/* Contact Highlight */
.contact-highlight {
    background: linear-gradient(135deg, rgba(224, 15, 28, 0.1), rgba(255, 30, 45, 0.05));
    border: 2px solid var(--accent-red-light);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.contact-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(224, 15, 28, 0.1), transparent);
    border-radius: 50%;
}

.highlight-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--accent-red-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    animation: pulse 2s infinite;
}

.highlight-icon i {
    color: white;
    font-size: 1.1rem;
}

.highlight-content h4 {
    color: var(--accent-red-light);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.highlight-content p {
    color: var(--light-text-primary);
    margin: 0;
    line-height: 1.5;
}

/* Contact Form */
.contact-form-container {
    background: var(--pure-white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red-light), #ff1e2d);
}

.contact-form-container h3 {
    color: var(--light-text-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    color: var(--light-text-primary);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 45px 15px 15px;
    border: 2px solid var(--light-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-bg-1);
    color: var(--light-text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red-light);
    background: white;
    box-shadow: 0 0 0 3px rgba(224, 15, 28, 0.1);
}

.form-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-text-secondary);
    transition: color 0.3s ease;
    pointer-events: none;
}

.form-group:focus-within .form-icon {
    color: var(--accent-red-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 15px;
}

.form-group textarea + .form-icon {
    top: 25px;
    transform: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 3px;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: var(--accent-red-light);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-contact-submit {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--accent-red-light), #ff1e2d);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(224, 15, 28, 0.4);
}

.btn-contact-submit::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: left 0.5s ease;
}

.btn-contact-submit:hover::before {
    left: 100%;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-contact-submit:hover .btn-icon {
    transform: translateX(5px);
}

.form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-response.success {
    background: rgba(80, 205, 137, 0.1);
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
}

.form-response.error {
    background: rgba(224, 15, 28, 0.1);
    color: var(--accent-red-light);
    border: 1px solid var(--accent-red-light);
}

/* Map and Social Bottom */
.contact-bottom {
    margin-top: 60px;
}

.map-container {
    margin-bottom: 40px;
}

.map-container h3 {
    color: var(--light-text-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background: linear-gradient(135deg, var(--light-bg-1), var(--pure-white));
    padding: 60px 30px;
    text-align: center;
    border: 2px dashed var(--light-border);
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    border-color: var(--accent-red-light);
    background: linear-gradient(135deg, rgba(224, 15, 28, 0.05), var(--pure-white));
}

.map-placeholder-content i {
    font-size: 3rem;
    color: var(--accent-red-light);
    margin-bottom: 20px;
}

.map-placeholder-content h4 {
    color: var(--light-text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.map-placeholder-content p {
    color: var(--light-text-secondary);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.btn-map-load {
    padding: 15px 30px;
    background: var(--accent-red-light);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-map-load:hover {
    background: #c00e18;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 15, 28, 0.3);
}

#googleMap {
    width: 100%;
    height: 400px;
}

.contact-social {
    text-align: center;
}

.contact-social h3 {
    color: var(--light-text-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--pure-white);
    color: var(--light-text-secondary);
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: white;
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #e6683c;
}

.social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.social-link.email:hover {
    background: var(--accent-red-light);
    border-color: var(--accent-red-light);
}

.social-link i {
    font-size: 1.3rem;
}

.social-link span {
    font-weight: 600;
    font-size: 1rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes rotateClockwise {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateCounterClockwise {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes breathing {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes appearFlor {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3) rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
}

@keyframes appearSol {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes appearLobo {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) translateY(0);
    }
}

@keyframes appearTexto {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

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

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

@keyframes floatVertical {
    0%, 100% { transform: rotate(5deg) translateY(0px); }
    50% { transform: rotate(5deg) translateY(-15px); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(var(--rotation, 0deg)); }
    50% { transform: translateY(-10px) rotate(var(--rotation, 0deg)); }
}

@keyframes sway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(2deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */

@media (max-width: 1200px) {
    .navbar {
        padding: 20px 30px;
    }
    
    .nav-content {
        gap: 30px;
    }
    
    .nav-menu {
        gap: 30px;
    }
    
    .logo {
        margin-right: 20px;
    }
    
    .cta-button {
        margin-left: 20px;
    }
    
    .logo-container {
        width: 400px;
        height: 400px;
    }
    
    .logo-element.flor-cerezo {
        width: 420px;
        height: 420px;
    }
    
    .logo-element.sol {
        width: 280px;
        height: 280px;
    }
    
    .logo-element.lobo-marino {
        width: 278px;
        height: 278px;
    }
    
    .logo-element.texto-club {
        width: 320px;
    }
    
    .logo-element.texto-valdivia {
        width: 144px;
    }
    
    .kanji-1 { font-size: 10rem; }
    .kanji-2 { font-size: 9rem; }
    .kanji-3 { font-size: 6rem; }
    
    .rama-izquierda,
    .rama-derecha {
        width: 250px;
        height: 350px;
    }
    
    .main-title {
        font-size: 2.4rem;
        letter-spacing: 3px;
    }
    
    .hero-content {
        max-width: 600px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MÓVIL
   ============================================ */

@media (max-width: 768px) {
    /* Loading ajustes móvil */
    .loading-content {
        padding: 0 20px;
    }
    
    .loading-flor {
        width: 60px;
        height: 60px;
    }
    
    .loading-text {
        font-size: 1rem;
    }
    
    .loading-bar {
        width: 150px;
    }
    
    /* Hero ajustes móvil */
    .hero-container {
        background-attachment: scroll;
    }
    
    /* Navbar móvil */
    .navbar {
        padding: 15px 20px;
        background: rgba(26, 31, 44, 0.95);
    }
    
    .nav-content {
        gap: 0;
        justify-content: space-between;
    }
    
    .logo {
        font-size: 1.2rem;
        margin-right: 0;
        flex: 1;
    }
    
    .nav-logo-img {
        width: 30px;
        height: 30px;
    }
    
    .nav-toggle {
        display: flex;
        margin-left: 10px;
        order: 2;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 31, 44, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .cta-button {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-left: 10px;
        order: 3;
    }
    
    /* Logo móvil */
    .logo-container {
        width: 280px;
        height: 280px;
        top: 35%;
    }
    
    .logo-element.flor-cerezo {
        width: 300px;
        height: 300px;
    }
    
    .logo-element.sol {
        width: 200px;
        height: 200px;
    }
    
    .logo-element.lobo-marino {
        width: 198px;
        height: 198px;
    }
    
    .logo-element.texto-club {
        width: 240px;
    }
    
    .logo-element.texto-valdivia {
        width: 108px;
    }
    
    /* Elementos de fondo móvil */
    .kanji-1 { 
        font-size: 8rem;
        left: -10%;
        top: 5%;
    }
    .kanji-2 { 
        font-size: 6rem;
        right: -15%;
        bottom: 10%;
    }
    .kanji-3 { 
        font-size: 4rem;
        left: 70%;
        top: 60%;
    }
    
    .rama-izquierda {
        width: 180px;
        height: 250px;
        top: 60px;
        left: -60px;
    }
    
    .rama-derecha {
        width: 180px;
        height: 250px;
        bottom: 0;
        right: -60px;
    }
    
    /* Contenido hero móvil */
    .hero-content {
        bottom: 8%;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }
    
    .main-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .description {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .main-cta {
        width: 200px;
        padding: 12px 25px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    /* Redes sociales móvil */
    .social-icons {
        left: 15px;
        gap: 12px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Scroll indicator móvil */
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-arrow {
        width: 25px;
        height: 25px;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
    
    /* Secciones móvil */
    .sections-preview,
    .stats-section,
    .sponsors-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .sections-preview h2,
    .sponsors-section h2,
    .contact-section h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .preview-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .preview-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .preview-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .preview-card p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .stat-item {
        padding: 15px 10px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Sponsors móvil */
    .sponsor-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .sponsor-item {
        padding: 25px 15px;
        min-height: 180px;
    }
    
    .placeholder-logo i {
        font-size: 2rem;
    }
    
    .placeholder-icon i {
        font-size: 2.5rem;
    }
    
    .sponsor-cta {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .sponsor-cta h3 {
        font-size: 1.4rem;
    }
    
    .sponsor-cta p {
        font-size: 0.9rem;
    }

    .technical-team-section {
        padding: 80px 0;
    }
    
    .technical-team-section h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .team-subtitle {
        font-size: 1rem;
        margin-bottom: 60px;
        padding: 0 20px;
    }
    
    .coach-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .coach-image {
        width: 150px;
        height: 150px;
    }
    
    .coach-card.main-coach .coach-image {
        width: 180px;
        height: 180px;
    }
    
    /* Badge ajustado para móvil */
    .coach-rank-badge {
        bottom: -10px;
        right: -10px;
        padding: 8px 12px;
        font-size: 0.8rem;
        transform: scale(0.9);
    }
    
    .coach-card:hover .coach-rank-badge {
        transform: scale(1.0) rotate(3deg);
    }

    .coach-name {
        font-size: 1.4rem;
    }
    
    .coach-card.main-coach .coach-name {
        font-size: 1.6rem;
    }
    
    .coach-bio p {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .specialty-tags {
        justify-content: center;
    }
    
    .specialty-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

.club-schedule-section {
        padding: 40px 25px;
        margin-top: 60px;
    }
    
    .schedule-header h3 {
        font-size: 1.8rem;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .schedule-day {
        padding: 25px 20px;
    }
    
    .time-slot {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 20px 15px;
    }
    
    .time-slot .category {
        text-align: center;
    }
    
    /* Contact móvil */
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 35px 12px 12px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
    
    .map-placeholder {
        padding: 40px 20px;
    }
    
    .contact-highlight {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .highlight-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MÓVIL PEQUEÑO
   ============================================ */

@media (max-width: 480px) {
    .loading-flor {
        width: 50px;
        height: 50px;
    }
    
    .loading-text {
        font-size: 0.9rem;
    }
    
    .loading-bar {
        width: 120px;
    }
    
    .navbar {
        padding: 12px 15px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .nav-logo-img {
        width: 25px;
        height: 25px;
    }
    
    .cta-button {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .logo-container {
        width: 240px;
        height: 240px;
        top: 32%;
    }
    
    .logo-element.flor-cerezo {
        width: 260px;
        height: 260px;
    }
    
    .logo-element.sol {
        width: 170px;
        height: 170px;
    }
    
    .logo-element.lobo-marino {
        width: 168px;
        height: 168px;
    }
    
    .logo-element.texto-club {
        width: 200px;
    }
    
    .logo-element.texto-valdivia {
        width: 90px;
    }
    
    .hero-content {
        bottom: 6%;
        padding: 0 10px;
    }
    
    .subtitle {
        font-size: 0.7rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    .main-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
    
    .description {
        font-size: 0.85rem;
        margin-bottom: 18px;
        line-height: 1.3;
    }
    
    .main-cta {
        width: 180px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .kanji-1 { font-size: 6rem; }
    .kanji-2 { font-size: 4.5rem; }
    .kanji-3 { font-size: 3rem; }
    
    .rama-izquierda,
    .rama-derecha {
        width: 150px;
        height: 200px;
    }
    
    .rama-izquierda {
        left: -70px;
    }
    
    .rama-derecha {
        right: -70px;
    }
    
    .social-icons {
        left: 10px;
        gap: 10px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .scroll-indicator {
        bottom: 15px;
    }
    
    .scroll-arrow {
        width: 20px;
        height: 20px;
    }
    
    .scroll-text {
        font-size: 0.7rem;
    }
    
    .sections-preview,
    .stats-section,
    .sponsors-section,
    .technical-team-section,
    .contact-section {
        padding: 40px 0;
    }
    
    .sections-preview h2,
    .sponsors-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .technical-team-section h2 {
        font-size: 2rem;
    }

    .section-subtitle,
    .team-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .preview-card {
        padding: 25px 15px;
    }
    
    .preview-icon {
        font-size: 2rem;
    }
    
    .preview-card h3 {
        font-size: 1.2rem;
    }
    
    .preview-card p {
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .sponsor-grid {
        gap: 15px;
        padding: 0 15px;
    }
    
    .sponsor-item {
        padding: 20px 15px;
        min-height: 160px;
    }
    
    .btn-sponsor-contact {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .coach-card {
        padding: 25px 15px;
    }
    
    .coach-image {
        width: 120px;
        height: 120px;
    }
    
    .coach-card.main-coach .coach-image {
        width: 150px;
        height: 150px;
    }

    /* Badge más pequeño en móvil extra pequeño */
    .coach-rank-badge {
        bottom: -8px;
        right: -8px;
        padding: 6px 10px;
        font-size: 0.75rem;
        transform: scale(0.85);
    }
    
    .rank-text {
        font-size: 0.7rem;
    }
    
    .rank-icon i {
        font-size: 0.9rem;
    }
    
    .coach-name {
        font-size: 1.3rem;
    }
    
    .coach-card.main-coach .coach-name {
        font-size: 1.5rem;
    }
    
    .coach-title {
        font-size: 1rem;
    }
    
    .credential-item {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .coach-bio p {
        font-size: 0.85rem;
    }
    
    .specialty-tag {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
.club-schedule-section {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .schedule-header h3 {
        font-size: 1.6rem;
    }
    
    .schedule-day {
        padding: 20px 15px;
    }
    
    .day-header h4 {
        font-size: 1.2rem;
    }
    
    .time-slot {
        padding: 15px 12px;
    }
    
    .schedule-note {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .contact-info h3,
    .contact-form-container h3,
    .map-container h3,
    .contact-social h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
   ACCESIBILIDAD Y PERFORMANCE
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .logo-element,
    .kanji,
    .rama-izquierda,
    .rama-derecha,
    .scroll-arrow,
    .loading-flor {
        animation: none !important;
    }
    
    .logo-element {
        opacity: 1 !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .hero-content,
    .scroll-indicator,
    .navbar,
    .social-icons {
        opacity: 1 !important;
        animation: none !important;
        transition: none !important;
    }
}

.logo-element {
    will-change: transform, opacity;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img,
    .nav-logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Estados de carga */
.loading .logo-element {
    opacity: 0;
}

.loaded .logo-element {
    opacity: 1;
}

/* CSS específico para texto responsive */
.mobile-text {
    display: none;
}

@media (max-width: 768px) {
    .desktop-text {
        display: none;
    }
    
    .mobile-text {
        display: block;
    }
}

/* ============================================
   ESTILOS PARA IMÁGENES REALES
   ============================================ */

/* ============================================
   LOGOS DE SPONSORS/ALIADOS
   ============================================ */

.sponsor-logo {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.sponsor-item:hover .sponsor-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.sponsor-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    min-height: 80px;
}

/* Estados de carga para logos */
.sponsor-logo {
    opacity: 0;
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.sponsor-logo.loaded {
    opacity: 1;
}

.sponsor-logo:hover {
    filter: grayscale(0%) brightness(1.1);
}

/* ============================================
   FOTOS DE COACHES/SENSEI
   ============================================ */

.coach-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.coach-image {
    overflow: hidden;
    position: relative;
}

.coach-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(224, 15, 28, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
    z-index: 1;
}

.coach-card:hover .coach-image::before {
    opacity: 1;
}

.coach-card:hover .coach-img {
    transform: scale(1.1);
}

/* Estados de carga para fotos */
.coach-img {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.coach-img.loaded {
    opacity: 1;
}

/* Placeholder mientras carga la imagen */
.coach-image-loading {
    background: linear-gradient(135deg, var(--light-bg-1), var(--light-bg-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text-secondary);
    font-size: 2rem;
}

/* ============================================
   RESPONSIVE PARA IMÁGENES
   ============================================ */

@media (max-width: 768px) {
    .sponsor-logo {
        max-width: 120px;
        max-height: 60px;
    }
    
    .coach-image {
        width: 100px;
        height: 100px;
    }
    
    .coach-card.main-coach .coach-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .sponsor-logo {
        max-width: 100px;
        max-height: 50px;
    }
    
    .coach-image {
        width: 80px;
        height: 80px;
    }
    
    .coach-card.main-coach .coach-image {
        width: 100px;
        height: 100px;
    }
}