/* ================================================
   RESPONSIVE.CSS - Media Queries Adicionales
   ================================================ */

/* Desktop Large - 1440px+ */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Desktop - 1024px to 1439px */
@media (max-width: 1439px) and (min-width: 1024px) {
    .container {
        max-width: 1200px;
    }
}

/* Tablet - 768px to 1023px */
@media (max-width: 1023px) and (min-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

/* Mobile - Less than 768px */
@media (max-width: 767px) {
    section {
        padding: 2.5rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.938rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.938rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}

/* Mobile Small - Less than 480px */
@media (max-width: 479px) {
    :root {
        font-size: 14px;
    }
    
    .container {
        padding: 0 0.875rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
    }
    
    .btn {
        padding: 0.688rem 1rem;
        font-size: 0.875rem;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.125rem; }
    
    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* Landscape Phone */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .scroll-indicator,
    .footer-social,
    .btn {
        display: none !important;
    }
    
    section {
        page-break-inside: avoid;
    }
    
    * {
        color: #000 !important;
        background: #fff !important;
        box-shadow: none !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode (Future Enhancement) */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles can be added here in the future */
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    * {
        border-width: 2px !important;
    }
    
    .btn {
        font-weight: 700;
    }
}
