/* Tablets */
@media (max-width: 1024px) {
    .hero-slider {
        height: 60vh;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .welcome-content h1 {
        font-size: 2.2rem;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* Móviles grandes */
@media (max-width: 768px) {
    /* HEADER PARA MÓVIL */
    #site-header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999;
    }
    
    #site-header-inner {
        padding: 10px 20px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    #site-logo img {
        max-width: 80px !important;
        height: auto !important;
    }
    
    /* Ocultar menú desktop */
    #site-navigation-wrap {
        display: none !important;
    }
    
    /* Mostrar botón móvil */
    .mobile-menu-button {
        display: flex !important;
    }
    
    /* Ajustar slider para header fijo */
    .hero-slider {
        height: 50vh;
        margin-top: 80px !important;
    }
    
    .slide-content {
        padding: 25px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .slider-controls button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    /* Secciones de contenido */
    .welcome-section,
    .news-section,
    .club-section {
        padding: 50px 0;
    }
    
    .welcome-content h1 {
        font-size: 1.8rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .club-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    #site-header-inner {
        padding: 8px 15px !important;
    }
    
    #site-logo img {
        max-width: 70px !important;
    }
    
    .hero-slider {
        height: 40vh;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 1.4rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .slider-controls {
        padding: 0 15px;
    }
    
    .slider-controls button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .welcome-content h1 {
        font-size: 1.5rem;
    }
    
    .club-features {
        grid-template-columns: 1fr;
    }
    
    .feature {
        padding: 20px 15px;
    }
    
    #scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .slide-content .cta-button {
        width: 90%;
        max-width: 250px;
        text-align: center;
    }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
    .cta-button {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .slide-content .cta-button {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}