/* CSS MODULAR PARA PÁGINAS LEGAIS - MOTO PONTA BRASIL */

/* ===== IMPORTAÇÕES DOS MÓDULOS ===== */
@import 'base.css';
@import 'components.css';
@import 'animations.css';
@import 'responsive.css';

/* ===== ESTILOS ESPECÍFICOS DA PÁGINA ===== */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: var(--bg-secondary);
    overflow-x: hidden;
}

/* ===== CLASSES UTILITÁRIAS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MELHORIAS DE ACESSIBILIDADE ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 4px;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
    color: white;
}

/* ===== FOCUS VISIBLE PARA ACESSIBILIDADE ===== */
.focus-visible {
    outline: 2px solid var(--primary-color) !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.25) !important;
}

/* ===== REDUÇÃO DE MOVIMENTO PARA ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .legal-header,
    .footer-legal,
    .breadcrumb-custom,
    #cookieConsent,
    .toast-container,
    .btn,
    .social-links {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
    }
    
    .legal-content {
        margin-top: 0 !important;
        box-shadow: none !important;
    }
}
