/* ===== DESKTOP WIDESCREEN ATÉ TABLET (1920px a 1025px) ===== */
@media (max-width: 1919px) and (min-width: 1025px) {
    
    /* HERO SECTION */
    .hero {
        min-height: auto;
        height: auto;
        padding: 0;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        aspect-ratio: 1919/650;
        max-width: 100%;
        margin-top: 60px;
    }
    
    .hero .container {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 2rem;
    }
    
    .hero-content {
        max-width: 500px;
        width: 45%;
        padding: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        min-width: 180px;
    }
    
    .entrega-gratis {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
        white-space: normal;
    }
    
    /* PRODUTOS */
    .servicos-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem;
    }
    
    .servico-card:nth-child(n+7) {
        display: none;
    }
    
    .servico-imagem {
        height: 180px;
    }
    
    .servico-info h3 {
        font-size: 1rem;
    }
    
    .btn-whatsapp-icon {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    /* CONTATO */
    .contato-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .contato-description {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        text-align: left;
    }
    
    .contato-form {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .contato-form .form-group {
        width: 100%;
    }
    
    .contato-form .form-group input,
    .contato-form .form-group textarea {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .btn-contato {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .contato-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        width: 100%;
        margin-top: 1rem;
    }
    
    .contato-card-item {
        padding: 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .contato-card-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }
    
    .contato-card-texto h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .contato-card-texto p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

/* ===== AJUSTE FINO PARA 1440px ===== */
@media (max-width: 1440px) and (min-width: 1025px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        min-width: 160px;
        padding: 0.8rem 1.2rem;
    }
}

/* ===== ACIMA DE 1920px (4K, Ultra-wide) ===== */
@media (min-width: 1921px) {
    .servicos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .servico-card:nth-child(n+9) {
        display: none;
    }
}