/* =========================================
   1. VARIABLES Y CONFIGURACIÓN BÁSICA
   ========================================= */
:root {
    /* Paleta de Colores */
    --primary-blue: #0a2351;  /* Azul Noche */
    --accent-blue: #1C3F75;   /* Azul Intermedio */
    --light-blue: #4dabf7;    /* Azul Claro */
    --dark-bg: #051025;       /* Fondo Oscuro */
    --light-bg: #f4f6f8;      /* Fondo Gris Claro */
    --text-grey: #666666;     
    --white: #ffffff;         
    
    /* Tipografía */
    --font-main: 'Poppins', sans-serif;
    --header-height: 80px;    
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden; 
    background-color: var(--white);
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: 0.3s; 
}

ul { 
    list-style: none; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. UTILIDADES Y ANIMACIONES
   ========================================= */
.text-center { 
    text-align: center; 
}

.mx-auto { 
    margin-left: auto; 
    margin-right: auto; 
}

/* Animación de entrada (Fade In Up) */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   3. BOTONES
   ========================================= */
.btn {
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-blue {
    background-color: var(--primary-blue);
    color: var(--white);
    border: 1px solid var(--primary-blue);
    box-shadow: 0 4px 10px rgba(10, 35, 81, 0.2);
}

.btn-blue:hover { 
    background-color: var(--white); 
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* =========================================
   4. HEADER (CABECERA)
   ========================================= */
.header {
    background-color: var(--white);
    height: var(--header-height);
    border-bottom: 1px solid #e5e5e5;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-img {
    max-height: 55px;
    width: auto;
    display: block;
    transition: 0.3s;
}

/* Navbar Desktop */
.navbar { 
    height: 100%; 
}

.nav-links { 
    display: flex; 
    height: 100%; 
    align-items: center; 
}

.nav-links > li { 
    height: 100%; 
    display: flex; 
    align-items: center; 
    position: relative; 
}

.nav-links > li > a {
    color: var(--primary-blue);
    padding: 0 18px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
}

.nav-links > li > a:hover {
    color: var(--light-blue);
    background-color: #f9f9f9;
}

/* Dropdown (Submenú) */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-top: 3px solid var(--primary-blue);
    z-index: 1000;
}

.dropdown-menu li { 
    width: 100%; 
}

.dropdown-menu li a {
    color: #555;
    padding: 15px 25px;
    display: block;
    font-size: 14px;
    text-transform: none;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: var(--primary-blue);
    padding-left: 30px;
}

@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }
    .dropdown:hover .dropbtn i {
        transform: rotate(180deg);
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Elementos del Header (Socials + CTA) */
.header-cta { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.header-socials { 
    display: flex; 
    gap: 15px; 
    padding-right: 15px; 
    border-right: 1px solid #eee; 
}

.header-socials a { 
    color: var(--primary-blue); 
    font-size: 18px; 
    transition: 0.3s; 
}

.header-socials a:hover { 
    color: var(--light-blue); 
    transform: scale(1.1); 
}

.header-cta .phone { 
    font-weight: 700; 
    color: var(--primary-blue); 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-size: 15px; 
}

.header-cta .phone i { 
    color: #25D366; 
    font-size: 18px; 
}

.hamburger { 
    display: none; 
    color: var(--primary-blue); 
    font-size: 26px; 
    cursor: pointer; 
    z-index: 1001; 
}

/* =========================================
   5. HERO SECTION (CARRUSEL)
   ========================================= */
.hero {
    background-color: var(--dark-bg);
    color: var(--white);
    position: relative;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 0;
    overflow: hidden; 
}

.hero-container-slider {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
}

.hero-slider { 
    width: 100%; 
    height: 100%; 
    position: relative; 
}

/* Diapositiva individual */
.slide {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    opacity: 0; 
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    display: flex; 
    align-items: center; 
    justify-content: space-between;
}

.slide.active { 
    opacity: 1; 
    visibility: visible; 
    z-index: 2; 
}

/* Texto del Hero */
.hero-text {
    max-width: 48%; 
    align-self: center; 
    padding-bottom: 60px;
    position: relative; 
    z-index: 20; 
}

.slide.active .hero-text { 
    animation: slideUpFade 1s forwards; 
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-text h1 {
    font-size: 46px; 
    line-height: 1.2;
    margin-top: 15px; 
    margin-bottom: 20px; 
    font-weight: 700;
}

.subtitle {
    font-size: 14px; 
    text-transform: uppercase; 
    letter-spacing: 3px;
    color: var(--light-blue); 
    font-weight: 600; 
    display: inline-block;
    background: rgba(77, 171, 247, 0.1); 
    padding: 6px 12px; 
    border-radius: 4px;
}

.hero-desc { 
    color: #d0d0d0; 
    margin-bottom: 30px; 
    font-size: 17px; 
    max-width: 90%; 
}

/* Imagen del Hero */
.hero-image {
    flex: 1; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    position: relative; 
    z-index: 10; 
    height: 100%; 
}

.slide .hero-image img {
    max-height: 500px; 
    width: auto; 
    max-width: 100%;
    border-radius: 10px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    object-fit: cover; 
    display: block;
}

/* Controles Minimalistas (Puntos/Flechas pequeñas centradas) */
.slider-controls {
    position: absolute; 
    bottom: 30px; 
    left: 50%;
    transform: translateX(-50%); 
    z-index: 100;
    display: flex; 
    gap: 15px;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7); 
    width: 35px; 
    height: 35px;
    border-radius: 50%; 
    font-size: 14px; 
    cursor: pointer;
    transition: all 0.3s ease; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    backdrop-filter: blur(3px);
}

.slider-controls button:hover {
    background: var(--primary-blue); 
    color: var(--white);
    border-color: var(--primary-blue); 
    transform: scale(1.1);
}

/* Barra inferior negra/azul */
.hero-bottom-bar {
    background: linear-gradient(90deg, var(--primary-blue) 0%, #061530 100%);
    padding: 40px 0; 
    color: var(--white); 
    margin-top: 0;
    position: relative; 
    z-index: 10;
}

.features-grid { 
    display: flex; 
    gap: 60px; 
}

.feature-item { 
    display: flex; 
    align-items: flex-start; 
    gap: 15px; 
}

.feature-item i { 
    font-size: 32px; 
    color: var(--light-blue); 
    margin-top: 5px; 
}

.feature-item h4 { 
    margin-bottom: 5px; 
    font-weight: 600; 
    font-size: 18px; 
}

.feature-item p { 
    font-size: 14px; 
    opacity: 0.8; 
}

/* =========================================
   6. SECCIONES GENERALES (Nosotros, Servicios)
   ========================================= */
.section-padding { 
    padding: 100px 0; 
}

h2 { 
    font-size: 36px; 
    color: var(--primary-blue); 
    margin-bottom: 20px; 
    font-weight: 700; 
}

.section-desc { 
    max-width: 800px; 
    margin-bottom: 20px; 
    color: var(--text-grey); 
    font-size: 16px; 
    line-height: 1.8; 
}

/* Misión y Visión */
.mission-vision-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
    margin-top: 50px;
}

.mv-card {
    background: var(--light-bg); 
    padding: 40px; 
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.mv-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
}

.mv-icon {
    width: 60px; 
    height: 60px; 
    background: var(--white); 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: var(--primary-blue); 
    font-size: 24px; 
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.mv-card h3 { 
    font-size: 24px; 
    margin-bottom: 15px; 
    color: var(--primary-blue); 
}

.mv-card p { 
    font-size: 15px; 
    color: #555; 
    font-style: italic; 
}

/* Servicios */
.services-grid-4 {
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px; 
    margin-top: 50px;
}

.service-card {
    background: #fff; 
    border-radius: 8px; 
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-bottom: 3px solid var(--light-blue);
}

.service-img-holder { 
    height: 180px; 
    overflow: hidden; 
    position: relative; 
}

.service-img-holder img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease; 
}

.service-card:hover .service-img-holder img { 
    transform: scale(1.1); 
}

.service-content { 
    padding: 25px 20px; 
    text-align: center; 
}

.service-content i {
    font-size: 32px; 
    color: var(--primary-blue); 
    margin-bottom: 15px;
    display: inline-block; 
    background: var(--light-bg); 
    width: 60px; 
    height: 60px;
    line-height: 60px; 
    border-radius: 50%;
}

.service-card:hover .service-content i { 
    background: var(--primary-blue); 
    color: var(--white); 
}

.service-content h4 { 
    font-size: 18px; 
    margin-bottom: 10px; 
    font-weight: 700; 
    color: var(--primary-blue); 
}

.service-content p { 
    font-size: 13px; 
    color: #666; 
    line-height: 1.5; 
}

/* Industrias */
.industries {
    position: relative;
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
                url('images/fondo-sectores.jpg'); 
    background-size: cover; 
    background-position: center right;
    background-attachment: fixed; 
    padding: 100px 0;
}

.section-header h3 { 
    position: relative; 
    z-index: 2; 
}

.industries-grid {
    display: flex; 
    justify-content: center; 
    gap: 30px; 
    margin-top: 60px;
    text-align: center; 
    position: relative; 
    z-index: 2;
}

.industry-item {
    max-width: 300px; 
    background: rgba(255, 255, 255, 0.8);
    padding: 40px 20px; 
    border-radius: 8px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s; 
    border: 1px solid rgba(255,255,255,0.5);
}

.industry-item:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    background: #fff; 
}

.icon-circle {
    width: 80px; 
    height: 80px; 
    background-color: var(--light-bg);
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin: 0 auto 25px; 
    color: var(--primary-blue); 
    font-size: 32px; 
    transition: 0.3s;
}

.industry-item:hover .icon-circle { 
    background: var(--primary-blue); 
    color: white; 
}

.industry-item h4 { 
    font-size: 20px; 
    margin-bottom: 10px; 
    font-weight: 600; 
}

/* =========================================
   7. EXTRAS (CTA, Certificaciones, Ubicación)
   ========================================= */
.cta-banner { 
    background-color: #020b1c; 
    color: var(--white); 
    padding: 80px 0; 
}

.phone-large { 
    font-size: 52px; 
    font-weight: 800; 
    margin-top: 20px; 
    color: var(--white); 
    text-shadow: 0 2px 10px rgba(0,0,0,0.5); 
}

.sub-cta { 
    display: block; 
    font-size: 18px; 
    color: var(--light-blue); 
    margin-top: 10px; 
    font-weight: 600; 
    text-transform: uppercase; 
}

.blue-strip { 
    background-color: var(--primary-blue); 
    color: var(--white); 
    padding: 25px 0; 
    font-weight: 500; 
    font-size: 15px; 
}

.flex-strip { 
    display: flex; 
    justify-content: space-between; 
    flex-wrap: wrap; 
    gap: 20px; 
}

.flex-strip span { 
    display: flex; 
    align-items: center; 
}

.flex-strip span i { 
    margin-right: 10px; 
    color: var(--light-blue); 
    font-size: 18px; 
}

/* Ubicación */
.location-section { 
    background-color: var(--light-bg); 
    border-top: 1px solid #ddd; 
}

.location-container { 
    display: flex; 
    gap: 40px; 
    margin-top: 40px; 
    align-items: stretch; 
}

.location-info { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}

.info-card {
    background: white; 
    padding: 25px; 
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
    border-left: 4px solid var(--primary-blue);
}

.info-card i { 
    font-size: 24px; 
    color: var(--primary-blue); 
    margin-bottom: 15px; 
}

.location-map { 
    flex: 1.5; 
    border-radius: 10px; 
    overflow: hidden; 
    min-height: 400px; 
    background: #ccc; 
}

.location-map iframe { 
    width: 100%; 
    height: 100%; 
    display: block; 
}

/* =========================================
   8. CONTACTO
   ========================================= */
.contact-modern-section { 
    padding: 100px 0; 
    background-color: var(--light-bg); 
}

.contact-wrapper {
    display: flex; 
    background: #fff; 
    border-radius: 20px; 
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08); 
    max-width: 1100px; 
    margin: 0 auto;
}

.contact-visual {
    flex: 2; 
    background: linear-gradient(135deg, var(--primary-blue), #040e22);
    padding: 60px 40px; 
    color: white; 
    position: relative;
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
}

.contact-visual h3 { 
    font-size: 32px; 
    margin-bottom: 20px; 
    color: white; 
}

.contact-visual p { 
    font-size: 16px; 
    opacity: 0.8; 
    margin-bottom: 40px; 
    line-height: 1.6; 
}

.contact-list-modern { 
    list-style: none; 
}

.contact-list-modern li { 
    margin-bottom: 20px; 
    display: flex; 
    align-items: center; 
    font-size: 16px; 
}

.contact-list-modern li i {
    width: 40px; 
    height: 40px; 
    background: rgba(255,255,255,0.1); 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-right: 15px; 
    color: var(--light-blue);
}

.visual-decor { 
    position: absolute; 
    bottom: -50px; 
    right: -50px; 
    font-size: 300px; 
    color: rgba(255,255,255,0.03); 
    pointer-events: none; 
}

.contact-form-holder { 
    flex: 3; 
    padding: 60px; 
    background: white; 
}

.form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
}

.input-group { 
    margin-bottom: 25px; 
}

.input-group label { 
    display: block; 
    font-size: 14px; 
    color: #666; 
    margin-bottom: 8px; 
    font-weight: 500; 
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%; 
    padding: 15px; 
    border: 1px solid #eee; 
    background: #f9f9f9;
    border-radius: 8px; 
    font-family: var(--font-main); 
    font-size: 14px; 
    transition: 0.3s;
}

.input-group input:focus, 
.input-group select:focus, 
.input-group textarea:focus {
    background: white; 
    border-color: var(--light-blue); 
    outline: none; 
    box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.1);
}

.btn-submit-modern {
    width: 100%; 
    padding: 18px; 
    background: var(--primary-blue); 
    color: white;
    border: none; 
    border-radius: 8px; 
    font-size: 16px; 
    font-weight: 700;
    cursor: pointer; 
    transition: 0.3s; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 10px;
}

.btn-submit-modern:hover { 
    background: var(--accent-blue); 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(10, 35, 81, 0.2); 
}

/* =========================================
   9. FOOTER
   ========================================= */
.footer { 
    padding: 80px 0 30px; 
    background-color: #f8f9fa; 
    color: var(--text-grey); 
}

.footer-grid { 
    display: flex; 
    justify-content: space-between; 
    gap: 40px; 
    margin-bottom: 50px; 
}

.footer-logo img { 
    max-width: 160px; 
    margin-bottom: 15px; 
}

.footer-logo h3 { 
    margin: 10px 0 5px; 
    font-weight: 800; 
    color: var(--primary-blue); 
    font-size: 22px; 
}

.social-links { 
    margin-top: 25px; 
}

.social-links a {
    display: inline-flex; 
    width: 40px; 
    height: 40px; 
    background: var(--light-bg);
    color: var(--primary-blue); 
    border-radius: 50%; 
    align-items: center; 
    justify-content: center;
    margin-right: 10px; 
    transition: 0.3s;
}

.social-links a:hover { 
    background: var(--primary-blue); 
    color: white; 
    transform: translateY(-3px); 
}

.footer-info h4 { 
    font-size: 16px; 
    margin-bottom: 20px; 
    font-weight: 700; 
    color: var(--primary-blue); 
    letter-spacing: 1px; 
}

.footer-info p { 
    font-size: 15px; 
    margin-bottom: 10px; 
    line-height: 1.6; 
}

.footer-bottom { 
    border-top: 1px solid #ddd; 
    padding-top: 30px; 
    font-size: 14px; 
}

/* Mapa del Footer */
.footer-map-container iframe {
    width: 100%; 
    height: 180px; 
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
    transition: transform 0.3s ease;
}

.footer-map-container iframe:hover { 
    transform: scale(1.02); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.3); 
}

/* =========================================================
   10. RESPONSIVE PROFESIONAL (Optimizado para Móviles)
   ========================================================= */

/* Tablets y Laptops Pequeñas */
@media (max-width: 992px) {
    .services-grid-4 { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .mission-vision-grid { 
        grid-template-columns: 1fr; 
    }
    
    .location-container { 
        flex-direction: column; 
    }
    
    .contact-wrapper { 
        flex-direction: column; 
    }
    
    .contact-visual { 
        padding: 40px 30px; 
    }
    
    .contact-form-holder { 
        padding: 40px 30px; 
    }
    
    .visual-decor { 
        font-size: 200px; 
        top: -50px; 
        bottom: auto; 
    }
}

/* Celulares (Modo App) */
@media (max-width: 768px) {
    :root { 
        --header-height: 70px; 
    }
    
    /* Header Móvil */
    .header-cta { 
        display: none; 
    } 
    /* Ocultamos botón superior, dejamos solo menú hamburguesa */
    
    .hamburger { 
        display: block; 
    }
    
    .logo-img { 
        max-height: 45px; 
    } 

    /* Menú Desplegable (Animación suave) */
    .navbar {
        position: fixed; 
        top: var(--header-height); 
        left: -100%;
        width: 85%; 
        height: calc(100vh - var(--header-height));
        background-color: var(--white); 
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 10px 0 30px rgba(0,0,0,0.1); 
        overflow-y: auto;
    }
    
    .navbar.active { 
        left: 0; 
    }
    
    .nav-links { 
        flex-direction: column; 
        align-items: flex-start; 
        height: auto; 
        padding: 20px 0; 
    }
    
    .nav-links > li { 
        width: 100%; 
        height: auto; 
        flex-wrap: wrap; 
    }
    
    .nav-links > li > a { 
        padding: 15px 30px; 
        width: 100%; 
        font-size: 16px; 
        color: var(--primary-blue); 
        border-bottom: 1px solid #f0f0f0; 
        justify-content: space-between; 
    }
    
    .dropdown-menu { 
        position: static; 
        display: none; 
        min-width: 100%; 
        background-color: #fafafa; 
        border: none; 
        box-shadow: none; 
    }
    
    .dropdown-menu.active { 
        display: block; 
    }
    
    .dropdown-menu li a { 
        padding-left: 45px; 
        font-size: 15px; 
        color: #666; 
    }

    /* Hero Section (Ajuste Clave para Móvil) */
    .hero { 
        padding-top: var(--header-height); 
    }
    
    .hero-container-slider { 
        height: auto; 
        min-height: 100vh; /* Pantalla completa */
        flex-direction: column; 
        padding-top: 20px;
    }
    
    .slide { 
        position: relative; 
        flex-direction: column-reverse; /* Texto abajo, imagen arriba */
        text-align: center; 
        padding: 20px 0 60px; /* Espacio abajo para controles */
        display: none; 
    }
    
    .slide.active { 
        display: flex; 
    }
    
    .hero-image { 
        width: 100%; 
        height: auto; 
        margin-bottom: 20px; 
    }
    
    .slide .hero-image img { 
        max-height: 280px; /* Imagen no tan alta para que quepa texto */
        width: 100%; 
        object-fit: cover; 
        border-radius: 8px;
    }
    
    .hero-text { 
        max-width: 100%; 
        padding-bottom: 0; 
    }
    
    .hero-text h1 { 
        font-size: 28px; /* Título más pequeño */ 
        margin-top: 10px; 
    }
    
    .hero-desc { 
        font-size: 15px; 
        margin-bottom: 20px; 
    }
    
    /* Controles más arriba en móvil */
    .slider-controls { 
        bottom: 10px; 
    }
    
    /* Ajustes Generales de Espaciado */
    .section-padding { 
        padding: 60px 0; 
    }
    
    .services-grid-4 { 
        grid-template-columns: 1fr; 
    } /* 1 columna */
    
    .form-row { 
        grid-template-columns: 1fr; 
    }
    
    .industries-grid { 
        flex-direction: column; 
        align-items: center; 
    }
    
    /* Footer en columna */
    .footer-grid { 
        flex-direction: column; 
        text-align: center; 
        gap: 40px; 
    }
    
    .footer-logo, .footer-info { 
        align-items: center; 
    }
    
    .social-links { 
        justify-content: center; 
    }
    
    .footer-map-container iframe { 
        height: 220px; 
    }
}