/**
 * Fix for package cards on small screens
 */

/* Make sure we display 2 cards per row even on very small screens */
@media (max-width: 480px) {
    .services-grid.pacotes-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        margin-bottom: 30px !important;
    }
    
    /* Adjust the package cards for better display on small screens */
    .pacote-card h3 {
        font-size: 16px !important;
        margin: 10px 0 5px !important;
    }
    
    .pacote-card p {
        font-size: 12px !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
    }
    
    /* Add some margin before "Destinos Populares" to prevent overlap */
    h2[style*="margin-top: 60px"] {
        margin-top: 40px !important;
    }
    
    /* Adjust image height for better display */
    .service-image {
        height: 120px !important;
    }
}

/* Additional fixes for very small screens */
@media (max-width: 380px) {
    .services-grid.pacotes-container {
        gap: 10px !important;
    }
    
    .pacote-card h3 {
        font-size: 14px !important;
    }
    
    .pacote-card p {
        font-size: 11px !important;
    }
}
