/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevenir scroll horizontal */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    /* Ajustar imágenes */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Ajustar secciones */
    section {
        width: 100%;
        overflow: hidden;
    }
    
    /* Ajustar el hero section */
    #inicio {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Ajustar el grid de servicios */
    .grid {
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Ajustar el slider */
    .swiper-container {
        overflow: hidden;
        width: 100%;
    }
    
    .swiper-slide {
        width: 100% !important;
        padding: 0 1rem;
    }
    
    /* Ajustar el footer */
    footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Ajustes de tipografía */
    h1 {
        font-size: 2.5rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .text-2xl {
        font-size: 1.25rem !important;
    }
    
    .text-xl {
        font-size: 1.125rem !important;
    }
    
    /* Ajustes de espaciado */
    .py-24 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .gap-12 {
        gap: 2rem !important;
    }
    
    .p-8 {
        padding: 1.5rem !important;
    }
    
    .p-10 {
        padding: 1.5rem !important;
    }
}

/* Menú móvil */
@media (max-width: 768px) {
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: black;
        transition: 0.3s;
        z-index: 1000;
        padding: 2rem;
        overflow-y: auto;
    }
    
    .mobile-menu.active {
        left: 0;
    }
    
    .mobile-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.25rem;
    }
}

















