/* Responsividade */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .sobre-content {
        gap: 2rem;
    }
    
    .stats {
        gap: 1rem;
    }
    
    .contato-content {
        gap: 2rem;
    }
    
    .social-content {
        gap: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Header Mobile */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        gap: 1rem;
    }

    .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 Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Player Mobile */
    .music-player {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 12px 15px;
    }
    
    .song-title {
        font-size: 0.8rem;
    }
    
    .play-btn, .volume-btn {
        width: 30px;
        height: 30px;
    }
    
    /* Seções Mobile */
    .section-dark, .section-card {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Sobre Mobile */
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .sobre-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Notícias Mobile */
    .noticias-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .noticia-card {
        margin: 0 10px;
    }
    
    /* Vídeos Mobile */
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    /* Redes Sociais Mobile */
    .social-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .post-card {
        grid-template-columns: 1fr;
    }
    
    .post-image {
        height: 150px;
    }
    
    /* Contato Mobile */
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contato-info {
        gap: 1rem;
    }
    
    .info-item {
        padding: 1rem;
    }
    
    .contato-form {
        padding: 1.5rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .noticia-content, .video-content {
        padding: 1rem;
    }
    
    .noticia-content h3, .video-content h3 {
        font-size: 1.1rem;
    }
    
    .music-player {
        padding: 10px 12px;
    }
    
    .player-content {
        gap: 10px;
    }
    
    .song-title {
        font-size: 0.75rem;
    }
    
    .play-btn, .volume-btn {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .music-player {
        bottom: 5px;
        right: 5px;
        left: 5px;
        padding: 8px 10px;
    }
    
    .song-title {
        font-size: 0.7rem;
    }
    
    .play-btn, .volume-btn {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }
}

/* Ajustes para hover em dispositivos touch */
@media (hover: none) {
    .card-hover:hover {
        transform: none;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
    }
    
    .hero-img:hover {
        transform: none;
    }
    
    .video-card:hover .play-overlay {
        transform: translate(-50%, -50%);
    }
    
    .noticia-card:hover .noticia-image img {
        transform: none;
    }
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .animate-fade-in-up {
        animation: none;
    }
    
    .animate-pulse-gold {
        animation: none;
    }
}

/* Alto contraste */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #ffff00;
        --text-muted: #ffffff;
        --border-color: #ffffff;
    }
}

/* Modo escuro forçado */
@media (prefers-color-scheme: dark) {
    /* O site já é escuro por padrão, mas podemos ajustar se necessário */
}

