/* ===== RESPONSIVIDADE ===== */

/* Tablet */
@media (max-width: 992px) {
    .section-title {
        font-size: 34px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item {
        border-right: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper img {
        height: 400px;
    }
    
    .mvv-grid,
    .teaching-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 10px;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 15px;
    }
    
    .mobile-toggle {
        display: flex;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .top-bar-info {
        flex-direction: column;
        gap: 5px;
        font-size: 12px;
    }
    
    .top-bar-social {
        display: none;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats {
        margin-top: -30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .about-badge {
        width: 100px;
        height: 100px;
        right: 10px;
        bottom: -20px;
    }
    
    .badge-number {
        font-size: 32px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .mvv-grid,
    .teaching-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }
    
    .gallery-item.large {
        grid-column: span 2;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-text h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Modalidades - Tablet */
@media (max-width: 992px) {
    .modalidades-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .modalidades-slider {
        height: 450px;
        order: -1;
    }
    
    .modalidade-item {
        padding: 20px;
    }
    
    .modalidade-icon-box {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 24px;
    }
}

/* Modalidades - Mobile */
@media (max-width: 600px) {
    .modalidades-slider {
        height: 350px;
    }
    
    .modalidade-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .modalidade-icon-box {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
    }
    
    .modalidade-details h3 {
        font-size: 18px;
    }
    
    .modalidade-features {
        font-size: 12px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .slider-caption {
        padding: 20px;
    }
    
    .slider-caption i {
        font-size: 24px;
    }
    
    .slider-caption span {
        font-size: 18px;
    }
}

/* Mobile Pequeno */
@media (max-width: 400px) {
    .hero-title {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .logo-text h1 {
        font-size: 16px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}