/* =================================================================
   HEYLULI COMPLIANCE - RESPONSIVE.CSS
   Media Queries e Responsividade Completa
   ================================================================= */

/* =================== MOBILE FIRST BASE =================== */
/* Estilos base já estão em mobile-first nos outros arquivos */

/* =================== SMALL DEVICES (576px+) =================== */
@media (min-width: 576px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .satisfaction-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =================== MEDIUM DEVICES (768px+) =================== */
@media (min-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: flex;
    }
    
    .nav-contact {
        display: flex;
    }
    
    .hamburger {
        display: none;
    }
    
    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-3xl);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-actions {
        flex-direction: row;
    }
    
    /* About Section */
    .about-story {
        grid-template-columns: 1fr 1fr;
    }
    
    .story-cta {
        flex-direction: row;
        align-items: center;
    }
    
    .story-stats {
        flex-direction: row;
        gap: var(--spacing-md);
    }
    
    /* Services */
    .tab-content {
        grid-template-columns: 2fr 1fr;
    }
    
    /* Contact */
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .action-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Trust */
    .trust-badges {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
    
    .footer-about {
        text-align: left;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    
    .newsletter-form .form-group {
        flex-direction: row;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }
    
    .footer-copyright {
        text-align: left;
    }
    
    .footer-legal {
        justify-content: flex-end;
    }
    
    /* Cookie Notice */
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
    
    /* Timeline Desktop */
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        padding-left: 0;
        width: 50%;
    }
    
    .timeline-item:nth-child(odd) {
        margin-left: 0;
        text-align: right;
        padding-right: 40px;
    }
    
    .timeline-item:nth-child(even) {
        margin-left: 50%;
        padding-left: 40px;
    }
    
    .timeline-marker {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before {
        left: auto;
        right: -8px;
        border-right: none;
        border-left: 8px solid white;
    }
    
    .timeline-item:nth-child(odd)::before {
        left: auto;
        right: 40px;
    }
}

/* =================== LARGE DEVICES (992px+) =================== */
@media (min-width: 992px) {
    .section-title {
        font-size: var(--fs-5xl);
    }
    
    h1 { 
        font-size: 4rem; 
    }
    
    h2 { 
        font-size: var(--fs-5xl); 
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .satisfaction-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .mission-vision {
        grid-template-columns: 1fr 1fr;
    }
}

/* =================== EXTRA LARGE DEVICES (1200px+) =================== */
@media (min-width: 1200px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .policies-content {
        padding: var(--spacing-3xl);
    }
}

/* =================== LANDSCAPE ORIENTATION =================== */
@media (orientation: landscape) and (max-height: 500px) {
    .hero {
        min-height: 70vh;
        padding-top: 60px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero-stats {
        margin-bottom: var(--spacing-lg);
    }
}

/* =================== PRINT STYLES =================== */
@media print {
    .header,
    .whatsapp-float,
    .back-to-top,
    .cookie-notice,
    .scroll-indicator {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }
    
    .hero-background {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 18pt;
    }
    
    .btn {
        display: none;
    }
}

/* =================== REDUCED MOTION =================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .whatsapp-float {
        animation: none;
    }
    
    .scroll-indicator {
        animation: none;
    }
}

/* =================== HIGH CONTRAST =================== */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #FFFFFF;
        --text-dark: #000000;
        --text-light: #000000;
        --border-color: #000000;
    }
    
    .btn {
        border-width: 2px;
    }
} 