/* Estilos responsivos para Multiservicios Express */

/* Tablets y pantallas medianas */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-details {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Tablets pequeñas y móviles grandes */
@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .header-main {
        display: none;
    }
    
    .header-content {
        display: none;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 20px; /* Larger touch target */
        font-size: 1.05rem;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--dark);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        padding: 10px 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
    }
    
    .nav-links.active {
        display: flex;
        transform: scaleY(1);
        opacity: 1;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .menu-toggle {
        display: block;
        color: white;
        font-size: 1.4rem;
        padding: 5px;
        background: transparent;
        border: none;
    }
    
    .navbar {
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar::before {
        content: 'Multiservicios Express';
        color: white;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 1.1rem;
        margin-left: 10px;
    }
    
    .whatsapp-float {
        padding: 10px;
        border-radius: 50%;
        opacity: 0.8;
        width: 50px;
        height: 50px;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .whatsapp-float i {
        font-size: 1.6rem;
        margin: 0;
    }
    
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-whatsapp span {
        display: none !important;
    }
}

/* Móviles pequeños */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 70px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .services,
    .location-section,
    .service-content {
        padding: 40px 0;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content p {
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Pantallas muy pequeñas */
@media (max-width: 400px) {
    .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 20px;
    }
}