/* Correções específicas para problemas identificados */

/* Header totalmente responsivo */
.header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .header-content {
        padding: 0.5rem 15px !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
    }
    
    .logo img {
        height: 35px !important;
    }
    
    .header-cta {
        display: none !important;
    }
    
    .nav {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .nav.active {
        display: flex !important;
    }
    
    .nav a {
        padding: 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff !important;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .nav a:hover {
        color: #d4af37 !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
}

/* Botão scroll to top forçado */
.scroll-to-top {
    position: fixed !important;
    bottom: 100px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #d4af37, #f4d03f) !important;
    color: #000 !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
    transition: all 0.3s ease !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: 1001 !important;
    transform: translateY(20px) !important;
}

.scroll-to-top.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.scroll-to-top:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5) !important;
    background: linear-gradient(135deg, #f4d03f, #d4af37) !important;
}

/* Footer responsivo forçado */
@media (max-width: 768px) {
    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .footer-section {
        margin-bottom: 1.5rem !important;
    }
    
    .footer-section h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
        color: #d4af37 !important;
    }
    
    .footer-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .footer-links a {
        color: #d4af37 !important;
        text-decoration: none !important;
        transition: color 0.3s ease !important;
        padding: 0.5rem 0 !important;
    }
    
    .footer-links a:hover {
        color: #fff !important;
    }
    
    .footer-social {
        display: flex !important;
        justify-content: center !important;
        gap: 1rem !important;
        margin-top: 1rem !important;
    }
    
    .footer-social a {
        width: 50px !important;
        height: 50px !important;
        background: #d4af37 !important;
        color: #000 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.5rem !important;
        transition: all 0.3s ease !important;
    }
    
    .footer-social a:hover {
        background: #f4d03f !important;
        transform: translateY(-2px) !important;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem !important;
    }
    
    .footer-section h3 {
        font-size: 1.1rem !important;
    }
    
    .footer-links a {
        font-size: 0.9rem !important;
    }
    
    .footer-bottom {
        font-size: 0.8rem !important;
        padding-top: 1rem !important;
        text-align: center !important;
    }
    
    .scroll-to-top {
        width: 45px !important;
        height: 45px !important;
        bottom: 90px !important;
        font-size: 1rem !important;
    }
}

/* Vídeo com áudio habilitado */
.hero-video-iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    border-radius: 17px !important;
}
