/* Responsividade - Mobile First */

/* Tablets (768px - 992px) */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Links para páginas específicas */
    .page-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-top: 30px;
    }
    
    .page-link {
        background: white;
        padding: 10px 20px;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        font-weight: 500;
        transition: var(--transition);
    }
    
    .page-link:hover {
        background-color: var(--primary-color);
        color: white;
    }
}

/* Celulares (576px - 768px) */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: var(--shadow);
        gap: 20px;
    }
    
    .nav.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 100px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 1.8rem;
    }
    
    .call-float {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .testimonial-item {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Celulares pequenos (até 576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .whatsapp-float {
        bottom: 100px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .call-float {
        bottom: 30px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .social-proof {
        padding: 20px 15px;
    }
    
    .page-links {
        flex-direction: column;
    }
    
    .page-link {
        text-align: center;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Desktop grande (acima de 1200px) */
@media (min-width: 1200px) {
    .container {
        max-width: var(--container-width);
    }
}

/* Impressão */
@media print {
    .header, .whatsapp-float, .call-float, .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .section {
        padding: 20px 0;
    }
}