/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.8rem;
    }
    
    .meetings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-icon {
        width: 90px;
        height: 90px;
    }
    
    .camp-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-buttons {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .nav-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        box-shadow: var(--shadow-medium);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 0.8rem 0;
        font-size: 1.1rem;
    }

    .nav-buttons {
        display: none;
    }
    
    .nav-links.active .nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
        width: 100%;
    }

    .hero {
        padding: 6rem 0;
    }

    .hero h2 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

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

    .teaching-content {
        padding: 2.5rem 2rem 2.5rem 2.5rem;
    }

    .social-icon {
        width: 80px;
        height: 80px;
    }
    
    .camp-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .table-actions {
        width: 100%;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .camp-table {
        display: block;
        overflow-x: auto;
    }
    
    .camp-invitation-modal {
        width: 300px;
        right: 10px;
        top: 80px;
    }
    
    .invitation-header {
        padding: 0.6rem 0.8rem;
    }
    
    .invitation-title {
        font-size: 0.9rem;
    }
    
    .invitation-body {
        max-height: 300px;
    }
}

@media (max-width: 336px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .teaching-content {
        padding: 2rem 1.5rem 2rem 2rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .custom-logo {
        width: 60px;
        height: 60px;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .camp-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .camp-invitation-modal {
        width: 280px;
        right: 10px;
        top: 70px;
    }
    
    .invitation-minimized-icon {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .invitation-minimized-icon i {
        font-size: 1.2rem;
    }
    
    /* Mostrar solo iconos en móviles pequeños */
    .nav-btn span {
        display: none;
    }
    
    .nav-btn {
        padding: 0.5rem;
        width: 45px;
        height: 45px;
        justify-content: center;
        border-radius: 50%;
    }
    
    .nav-btn i {
        margin: 0;
        font-size: 1.1rem;
    }
}