/* --- VARIABLES --- */
:root {
    --primary-color: #003366; /* Azul Oscuro Corporativo */
    --primary-hover: #002244;
    --accent-color: #ff9900;  /* Naranja */
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --border-color: #e1e1e1;
}

/* Reset básico */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Roboto', sans-serif; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }


/* =========================================
   HEADER & NAVIGATION STYLES
   ========================================= */

/* Ajuste al body para compensar el header fijo más alto */
body { padding-top: 100px; }

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); /* Sombra más suave y moderna */
    background: var(--white);
}

.brand-logo .logo img{
    height: 50px; /* Ajusta el tamaño del logo */
}

/* --- 1. TOP BAR (Subheader Premium) --- */
.top-bar {
    background-color: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* Grupo de Contacto (Iconos + Texto) */
.contact-group {
    display: flex;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-box {
    width: 35px;
    height: 35px;
    background-color: #f4f8fb; /* Fondo azul muy pálido para el icono */
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.info-item:hover .icon-box {
    background-color: var(--accent-color);
    color: var(--white);
}

.info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.info-text .label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
}

.info-text .value {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Divisor Vertical Bonito */
.info-divider {
    height: 30px;
    width: 1px;
    background-color: #e1e1e1;
    margin: 0 25px; /* Espacio amplio entre dirección y teléfono */
}

/* Utilities (FAQ + Idiomas) */
.utilities {
    display: flex;
    align-items: center;
}

.faq-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 20px;
    transition: var(--transition);
}

.faq-box i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.faq-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: right;
}

.faq-quest { font-size: 0.75rem; color: #888; }
.faq-link { font-size: 0.85rem; font-weight: 700; color: var(--primary-color); }

.faq-box:hover .faq-link { color: var(--accent-color); }

.utility-divider {
    height: 25px;
    width: 1px;
    background-color: #e1e1e1;
    margin-right: 20px;
}

.lang-social-wrapper {
    display: flex;
    flex-direction: column; /* Apilamos idiomas sobre redes o al revés, o row */
    align-items: flex-end;
    gap: 2px;
}

.lang-switch {
    font-size: 0.8rem;
    font-weight: 600;
}

.lang-opt { color: #999; cursor: pointer; transition: 0.3s; }
.lang-opt:hover { color: var(--primary-color); }
.lang-opt.active { color: var(--primary-color); font-weight: 800; }
.lang-sep { margin: 0 3px; color: #ddd; }

.socials-mini { font-size: 0.8rem; }
.socials-mini a { margin-left: 8px; color: #999; transition: 0.3s; }
.socials-mini a:hover { color: var(--accent-color); }


/* --- 2. MAIN NAV (Azul con Efecto Hover Center-Out) --- */
.main-nav {
    background-color: var(--primary-color);
    height: 55px; /* Un poco más alto para elegancia */
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 100%; /* Importante para que los hijos ocupen el alto */
}

.nav-menu {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 10px;
}

/* Estilo Base del Enlace */
.nav-menu li a.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    padding: 0 20px;
    position: relative; /* Necesario para posicionar el ::after */
    height: 55px; /* Ocupa todo el alto */
    display: flex;
    align-items: center; /* Centra el texto verticalmente */
    text-decoration: none;
    letter-spacing: 0.5px;
}

/* ANIMACIÓN HOVER: Center to Sides */
.nav-menu li a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; /* Pegado al borde inferior */
    left: 50%; /* Inicia en el centro */
    transform: translateX(-50%); /* Corrige el centrado exacto */
    width: 0%; /* Inicia invisible (ancho 0) */
    height: 4px; /* Grosor de la línea */
    background-color: var(--accent-color); /* Color Naranja */
    transition: width 0.3s ease-in-out; /* La magia de la animación */
}

.nav-menu li a.nav-link:hover::after {
    width: 100%; /* Al pasar el mouse, se expande a los lados */
}

/* El botón de contacto (sin la animación de línea) */
.nav-menu li a.nav-cta {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 25px; /* Padding propio de botón */
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-left: 20px;
    transition: transform 0.3s, background 0.3s;
    /* Reset de estilos de nav-link standard */
    height: auto; 
    line-height: normal;
}

.nav-menu li a.nav-cta:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* --- RESPONSIVE AJUSTES --- */
@media (max-width: 992px) {
    .top-bar-content { flex-direction: column; gap: 15px; }
    .contact-group { display: none; /* Ocultamos detalles en móvil */ }
    .utilities { width: 100%; justify-content: space-between; padding: 0 20px; }
    .faq-text { text-align: left; }
    .utility-divider { display: none; }
    
    /* Ajustes menú móvil */
    .nav-container { justify-content: space-between; padding: 0 20px; }
    .nav-menu { display: none; } /* (Requiere JS para abrirse) */
}

/* --- ESTILOS DEL TOGGLE (HAMBURGUESA) --- */

/* 1. Por defecto oculto en escritorio */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    padding: 5px;
}

/* 2. MEDIA QUERY (Móvil y Tablet) */
@media (max-width: 992px) {
    
    /* Ajustamos el padding del cuerpo porque el header cambia de altura */
    body { padding-top: 140px; }

    /* Ocultamos los detalles extra del Top Bar en móvil */
    .contact-group { display: none; }
    .utility-divider { display: none; }
    .utilities { width: 100%; justify-content: space-between; }
    
    /* --- MENÚ MÓVIL --- */
    
    /* El contenedor del nav ahora separa los elementos (menú y botón) */
    .nav-container {
        justify-content: flex-end; /* Mueve el botón hamburguesa a la derecha */
        padding: 0 20px;
    }

    /* Hacemos visible el botón hamburguesa */
    .menu-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Estilos del menú desplegable */
    .nav-menu {
        display: none; /* Oculto por defecto */
        position: absolute;
        top: 100%; /* Justo debajo de la barra azul */
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column; /* Elementos uno debajo del otro */
        align-items: flex-start;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(255,255,255,0.1);
        height: 350px;
    }

    /* Clase que añadiremos con JS para mostrar el menú */
    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    /* Ajuste de los enlaces en móvil */
    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a.nav-link {
        width: 100%;
        padding: 15px 30px;
        height: auto; /* Quitamos altura fija de escritorio */
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    /* Quitamos la animación de la línea en móvil (se ve raro en vertical) */
    .nav-menu li a.nav-link::after { content: none; }

    /* Ajuste botón CTA en móvil */
    .nav-menu li a.nav-cta {
        margin: 15px 30px;
        display: block;
        text-align: center;
    }
}

/* Pequeña animación de entrada */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.img-responsive { width: 100%; height: auto; }

.btn-cta {
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: var(--transition);
    display: inline-block;
}

.btn-cta:hover { background: #e68a00; }

/* --- HERO SECTION --- */
#inicio {
    /* Aquí se usa una imagen de stock, recuerda cambiar la URL si deseas usar la tuya */
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-size: 2.5rem;
}

/* --- CONÓCENOS --- */
/* --- CONÓCENOS (REDISEÑO PREMIUM) --- */
#conocenos {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden; /* Para evitar scroll horizontal por decoraciones */
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --- Columna de Imágenes (Izquierda) --- */
.about-images {
    position: relative;
    padding-left: 20px; /* Espacio para el efecto visual */
}

/* Marco de la imagen principal */
.img-frame {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.img-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.img-frame:hover img {
    transform: scale(1.03);
}

/* Badge Flotante "10 Años" */
.experience-badge {
    position: absolute;
    bottom: -30px; /* Cuelga un poco hacia afuera */
    right: -20px;  /* Cuelga hacia la derecha */
    background: var(--primary-color);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0,51,102, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 4px solid var(--white); /* Borde blanco para separarlo de la foto */
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-color); /* Naranja */
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 5px;
}

/* Patrón de Puntos Decorativo (Fondo) */
.pattern-dots {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100px;
    height: 100px;
    z-index: 1;
    background-image: radial-gradient(var(--secondary-color) 2px, transparent 2px);
    background-size: 10px 10px; /* Tamaño del patrón */
    opacity: 0.5;
}

/* --- Columna de Texto (Derecha) --- */
.about-content .sub-title {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.about-content .lead-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
}

.about-content .body-text {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Grid de Valores (Iconos pequeños) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas */
    gap: 20px;
    margin-bottom: 35px;
}

.value-item {
    text-align: center;
    padding: 15px 10px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.value-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.value-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.value-info p {
    font-size: 0.8rem;
    color: #777;
    margin: 0;
}

/* Botón Outline */
.btn-primary-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr; /* Una columna en móvil */
        gap: 50px;
    }
    
    .about-images {
        margin-bottom: 20px;
        padding-left: 0;
        padding-right: 20px; /* Espacio para el badge en móvil */
    }
    
    .experience-badge {
        right: 0;
        padding: 15px 20px;
    }
    
    .exp-number { font-size: 2rem; }
    
    .about-content h2 { font-size: 2rem; }
    
    .values-grid {
        grid-template-columns: 1fr; /* Iconos uno debajo de otro en móvil muy pequeño, o dejar en 3 */
    }
}
@media (max-width: 480px) {
    .values-grid { grid-template-columns: 1fr; gap: 10px; }
    .value-item { display: flex; align-items: center; gap: 15px; text-align: left; padding: 10px; }
    .value-icon { margin-bottom: 0; }
}

/* --- SERVICIOS --- */
/* --- SERVICIOS --- */
#servicios {
    padding: 80px 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Tarjetas un poco más anchas */
    gap: 30px;
}

/* Estilo Contenedor Tarjeta */
.service-card {
    background: var(--white);
    border-radius: 15px; /* Bordes redondeados modernos */
    overflow: hidden; /* Para que la imagen respete el borde */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Encabezado de la Tarjeta (Imagen + Icono) */
.card-header {
    position: relative;
    height: 220px; /* Altura fija para uniformidad */
    width: 100%;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen llene el espacio sin deformarse */
    transition: transform 0.5s;
}

.service-card:hover .card-img {
    transform: scale(1.05); /* Zoom sutil al hacer hover */
}

/* El Icono con forma especial */
.card-icon-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--white);
    width: 70px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* MAGIA DE LA FORMA: Redondeamos solo la esquina superior derecha */
    border-top-right-radius: 30px; 
    
    z-index: 10;
    box-shadow: 5px -5px 15px rgba(0,0,0,0.05); /* Sombra sutil hacia la imagen */
}

.card-icon-badge i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

/* Cuerpo de la Tarjeta */
.card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Ocupa el espacio restante */
    position: relative;
    background: var(--white); /* Asegura que tape la imagen si hay overflow */
}

.card-body h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
}

.card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Contenido Oculto ("Leer más") */
.more-content {
    display: none;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    animation: fadeIn 0.4s ease;
}

.more-content.show {
    display: block;
}

.more-content h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    margin-top: 10px;
}

/* Listas personalizadas (Sin emojis, con CSS bullets) */
.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    position: relative;
    padding-left: 25px; /* Espacio para el bullet */
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.custom-list li::before {
    content: '\f058'; /* Código Unicode para un Check Circle de FontAwesome (opcional) o una simple forma */
    /* O usar un simple punto bonito: content: ''; */
    font-family: 'Font Awesome 5 Free'; 
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color); /* Bullet naranja */
    font-size: 0.9rem;
}

/* Botón "Leer Más" con cuerpo */
.btn-read-more {
    margin-top: auto; /* Empuja el botón al final */
    background-color: var(--primary-color); /* Fondo sólido */
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 50px; /* Forma de píldora */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start; /* Alineado a la izquierda */
    border: 2px solid var(--primary-color); /* Borde para efecto hover */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-read-more:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* --- CONTACTO --- */
#contacto {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 10px;
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 15px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover { background: #e68a00; color: var(--white); }

/* --- FOOTER --- */
/* --- FOOTER PREMIUM --- */
.site-footer {
    background-color: #001a33; /* Azul muy oscuro, casi negro */
    color: #b3b3b3; /* Gris claro para texto */
    padding-top: 70px;
    font-size: 0.9rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr; /* Columna de marca más ancha */
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Columna Marca */
.footer-logo {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo img{
    height: 80px;
}

.footer-desc {
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 300px;
}

/* Redes Sociales (Botones circulares) */
.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s;
}

.social-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Títulos de Columnas */
.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Pequeña línea decorativa bajo el título */
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

/* Enlaces del Footer */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b3b3b3;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

/* Efecto hover con flechita */
.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px; /* Desplazamiento sutil */
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    color: var(--accent-color);
    font-size: 1.2rem;
    line-height: 1;
}

/* Lista de Contacto */
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-list i {
    color: var(--accent-color);
    margin-top: 4px;
}

/* Newsletter Box */
.newsletter-box {
    margin-top: 25px;
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
}

.newsletter-box p {
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: var(--white);
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 0.85rem;
    outline: none;
}

.newsletter-form button {
    background-color: var(--accent-color);
    border: none;
    color: white;
    padding: 0 12px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover { background-color: #e68a00; }

/* --- Barra Inferior --- */
.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.legal-links a {
    margin-left: 20px;
    transition: 0.3s;
}

.legal-links a:hover { color: var(--accent-color); }

/* --- Responsive Footer --- */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr; /* 2 columnas en tablets */
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr; /* 1 columna en móvil */
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%); /* Centrar la línea decorativa */
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .contact-list li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .legal-links a {
        margin: 0 10px;
    }
}