/* ============================================================
   0. RESET Y ESTILOS BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    font-family: "Montserrat", sans-serif;
    background: #f3f6f9;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Variables de color globales */
:root {
    --color-primary: #00b4d8;
    --color-secondary: #005f8a;
    --color-dark: #333;
    --color-light: #f4f4f4;
    --color-bg-light: #ffffff;
    --color-text-dark: #333;
}

/* ===============================
   1. MENÚ SUPERIOR MODERNO
=============================== */
.menu-superior {
    background: #0a0a0a;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    position: relative;
    z-index: 100;
}
.logo-texto {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-texto img.logo-incop {
    height: 55px;
    transition: .3s;
}
.logo-texto img:hover {
    transform: scale(1.05);
}
.grupo-incopsa {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

/* Íconos sociales (desktop) */
.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}
.social-icons img {
    width: 24px;
    opacity: .8;
    transition: .25s;
}
.social-icons img:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* Botón hamburguesa (móvil) */
.menu-toggle {
    width: 32px;
    height: 22px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    height: 4px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: .3s;
}

/* ===============================
   2. MENÚ PRINCIPAL
=============================== */
.menu-principal {
    background: #0099cc;
    transition: transform .35s ease, opacity .3s;
}
.menu-principal ul {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 15px 0;
}
.menu-principal ul li a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: .25s;
}
.menu-principal ul li a:hover,
.menu-principal ul li a.active {
    border-bottom: 3px solid white;
}

/* Responsive: Menú principal */
@media (max-width: 1024px) {
    .menu-principal ul {
        gap: 25px;
    }
    .grupo-incopsa {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .social-icons {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .menu-principal {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #0099cc;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        box-shadow: 0 8px 15px rgba(0,0,0,0.3);
    }
    .menu-principal ul {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        gap: 20px;
    }
    .menu-principal.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
}
.menu-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==================================
   3. TÍTULO (HERO SECTION)
================================== */
.hero-section {
    background: url('hero-background.jpg') no-repeat center center/cover;
    background-color: var(--color-secondary);
    padding: 100px 20px;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}
.hero-section h1 {
    font-size: 3.8em;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}
.hero-section p {
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 45px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 3px solid var(--color-primary);
    padding-bottom: 15px;
}
.hero-cta-button {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 15px 40px;
    font-size: 1.15em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-cta-button:hover {
    background: #0077b6;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.6);
}
.hero-cta-button i {
    margin-left: 10px;
}
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 15px;
    }
    .hero-section h1 {
        font-size: 2.5em;
    }
    .hero-section p {
        font-size: 1.1em;
        margin-bottom: 30px;
    }
    .hero-cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}

/* ==================================
   3. APPLE SLIDESHOW (DESLIZADORES)
================================== */
.apple-slideshow {
    position: relative;
    width: 100%;
    max-width: 1150px;
    margin: 50px auto;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1.2s ease, transform 1.2s ease;
}
.slide.active {
    opacity: 1;
    transform: scale(1);
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kb 12s ease-in-out infinite alternate;
}
@keyframes kb {
    from { transform: scale(1); }
    to   { transform: scale(1.10); }
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 14px 18px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
    font-size: 25px;
    cursor: pointer;
    user-select: none;
    transition: 0.25s ease;
    color: white;
}
.arrow:hover {
    background: rgba(255,255,255,0.45);
    transform: translateY(-50%) scale(1.1);
}
.arrow.left {
    left: 18px;
}
.arrow.right {
    right: 18px;
}
.dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}
.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.6);
    border-radius: 50%;
    display: inline-block;
    transition: 0.25s;
    cursor: pointer;
}
.dot.active {
    background-color: #00b4d8;
    transform: scale(1.3);
}
.dot:hover {
    background-color: white;
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .arrow {
        padding: 10px 14px;
        font-size: 20px;
    }
    .dot {
        height: 10px;
        width: 10px;
    }
}

/* ==================================
   4. FRASE PRINCIPAL (ALIANZA)
================================== */
#alianza {
    padding: 0;
    margin: 0;
    background: none !important;
    height: auto !important;
    min-height: auto !important;
}
.alianza-section {
    padding: 50px 20px 20px;
    text-align: center;
}
.alianza-title {
    font-size: 1.7em;
    font-weight: 600;
    color: #003349;
    max-width: 900px;
    margin: auto;
    padding: 20px;
    line-height: 1.5;
    border-radius: 18px;
    background: rgba(0, 180, 216, 0.06);
    backdrop-filter: blur(6px);
}

/* ==================================
   5. TARJETAS CORPORATIVAS
================================== */
.alianza-cards {
    max-width: 1200px;
    margin: 40px auto 60px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.alianza-card {
    display: flex;
    gap: 30px;
    padding: 25px;
    background: var(--color-bg-light);
    border-radius: 14px;
    border-left: 6px solid var(--color-primary);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    align-items: center;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.alianza-card.is-featured {
    border-left-width: 10px;
    border-color: var(--color-secondary);
    background: #f8f8f8;
}
.alianza-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(0, 95, 138, 0.15);
    border-color: var(--color-secondary);
}
.card-image img {
    width: 180px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.alianza-card:hover .card-image img {
    transform: scale(1.03);
}
.card-text h3 {
    font-size: 1.6em;
    margin-bottom: 12px;
    color: var(--color-secondary);
}
.card-text p {
    font-size: 1.05em;
    color: var(--color-text-dark);
    text-align: justify;
    line-height: 1.5;
}
.fade-left, .fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: 0.9s ease;
}
.fade-right {
    transform: translateX(-50px);
}
.fade-show {
    opacity: 1;
    transform: translateX(0);
}
@media (min-width: 801px) {
    .alianza-card:nth-child(even) {
        flex-direction: row-reverse;
        border-left: none;
        border-right: 6px solid var(--color-primary);
    }
}
@media (max-width: 800px) {
    .alianza-card {
        flex-direction: column;
        text-align: center;
        border-right: none !important;
        border-left: 6px solid var(--color-primary);
    }
    .alianza-card.is-featured {
        border-left-width: 8px;
    }
    .card-image img {
        width: 150px;
    }
    .card-text p {
        text-align: center;
    }
}

/* ======================================= 
    6.ACERCA DE NOSOTROS / TRAYECTORIA 
======================================= */
.about-us-summary {
    background-color: #ffffff; /* Fondo blanco */
    padding: 60px 20px;
    text-align: center;
}

.about-us-summary h2 {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--color-secondary, #003349); /* Azul oscuro */
    margin-bottom: 20px;
}

.about-us-summary p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: var(--color-dark, #333);
}

.values-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.value-item {
    /* Usando un fondo claro, pero con el texto en el color secundario */
    background: var(--color-light, #f4f4f4); 
    color: var(--color-secondary, #003349);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05em;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

.value-item i {
    color: var(--color-primary, #00b4d8); /* Azul principal para los iconos */
    margin-right: 10px;
    font-size: 1.5em;
}

.value-item:hover {
    background: #e0f7fa; /* Tono más claro al pasar el ratón */
    cursor: default;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .values-grid {
        flex-direction: column;
        align-items: center;
    }
    .value-item {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
}

/* ==================================
   7. CONTEO DE PROYECTOS
================================== */
.summary-section {
    background: var(--color-bg-light);
    padding: 60px 20px;
    border-top: 4px solid var(--color-primary);
    border-bottom: 4px solid var(--color-primary);
    transition: background 0.5s ease;
}
.stats-group {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    text-align: center;
}
.stat {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    color: var(--color-secondary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 200px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.stat-icon-fa {
    font-size: 3.5em; /* Aumentado a 3.5em (el mismo tamaño que el número) */
    color: var(--color-secondary); /* Usa el azul oscuro para un toque premium */
    margin-bottom: 5px; /* Reducido para acercar al número */
    display: block;
    width: 100%;
}

.count {
    display: block;
    font-size: 3.5em;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.1;
}
.stat-label {
    font-size: 1.15em;
    font-weight: 600;
    margin-top: 5px;
    color: var(--color-text-dark);
}
.stat-icon {
    margin-top: 20px;
    width: 60px;
    height: auto;
    object-fit: contain;
    box-shadow: none;
    border-radius: 0;
}
.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 180, 216, 0.2);
    cursor: default;
}
@media (max-width: 600px) {
    .stats-group {
        flex-direction: column;
    }
    .stat {
        min-width: 100%;
    }
}

/* ======================================= 
    8. MISIÓN, VISIÓN, OBJETIVO (MEJORADO) === 
 ======================================= */
#enfoque {
    padding: 60px 20px;
    background: var(--color-light); /* Usa tu color claro/gris */
}
.enfoque-container {
    display: flex;
    gap: 30px; /* Ligeramente más compacto */
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}
.enfoque-card {
    background: #ffffff;
    width: 330px;
    padding: 30px 25px;
    border-radius: 12px; /* Ligeramente más suave */
    /* CAMBIO CLAVE: Quitamos el border-top pesado por una sombra sutil */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
    border-top: 3px solid var(--color-primary); /* Mantenemos una línea delgada y moderna */
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
    animation: fadeUp 0.9s ease both;
}

/* Mantenemos las animaciones de retraso si tienes el CSS de @keyframes fadeUp */
.enfoque-card:nth-child(1) { animation-delay: .1s; }
.enfoque-card:nth-child(2) { animation-delay: .25s; }
.enfoque-card:nth-child(3) { animation-delay: .4s; }

.enfoque-card:hover {
    transform: translateY(-5px); /* Menos dramático */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* NUEVO ESTILO: Iconos Font Awesome */
.enfoque-card .icon {
    font-size: 3.5em; /* Tamaño prominente */
    color: var(--color-primary); /* El color de acento */
    margin-bottom: 15px;
    display: block; /* Para centrar */
    width: 100%;
    transition: transform .3s ease;
}
.enfoque-card:hover .icon {
    transform: scale(1.05); /* Ligeramente más pequeño el zoom */
}
.enfoque-card h2 {
    font-size: 1.35em;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-secondary); /* Usa tu color oscuro */
    letter-spacing: normal;
    text-transform: uppercase;
}
.enfoque-card p {
    color: var(--color-dark, #333);
    font-size: 1em; /* Ligeramente más pequeño y fácil de leer */
    line-height: 1.5;
    text-align: justify;
    font-weight: 400;
}


/* ==================================
   9. ÁREAS DE ESPECIALIDAD (GRID)
================================== */
.specialties-section {
    background: var(--color-light);
    padding: 60px 20px;
    text-align: center;
}
.specialties-section h2 {
    font-size: 2em;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 40px;
}
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.specialty-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.15);
}
.specialty-card i {
    font-size: 3.5em;
    color: var(--color-primary);
    margin-bottom: 15px;
    display: block;
}
.specialty-card h3 {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
}
.specialty-card p {
    font-size: 0.95em;
    color: var(--color-dark);
}

/* ================================== 
   10. CERTIFICACIONES Y CALIDAD (NORMATIVAS)===
================================== */

.certifications-section {
    padding: 60px 20px;
    background-color: white; /* De vuelta al blanco para contraste */
    text-align: center;
}

.certifications-section h2 {
    font-size: 2em;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.certifications-section p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1em;
    color: var(--color-dark);
}

.certifications-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.cert-item {
    flex: 1;
    padding: 20px;
    border: 1px solid var(--color-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cert-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.cert-item i {
    font-size: 3em;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.cert-item h4 {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 5px;
}

/* Responsividad para la cuadrícula de certificaciones */
@media (max-width: 768px) {
    .certifications-grid {
        flex-direction: column;
    }
}

/* ==================================
   11. LIDERAZGO Y CONTACTO (CTA)
================================== */
.leadership-cta {
    background: var(--color-secondary);
    color: white;
    padding: 50px 20px;
    text-align: center;
    margin-top: 40px;
}
.leadership-cta h2 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
}
.leadership-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
    font-weight: 300;
}
.leadership-card {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 1.1em;
    font-weight: 600;
}
.leadership-card i {
    margin-right: 10px;
    color: var(--color-primary);
}
.leadership-cta .final-cta-text {
    font-size: 1.6em;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
}
.final-cta-button {
    display: inline-block;
    background: white;
    color: var(--color-secondary);
    padding: 15px 40px;
    font-size: 1.15em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.3s ease;
}
.final-cta-button:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.05);
}

/* ==================================
   12. TÍTULO NUESTROS PROYECTOS (MEJORADO)
================================== */
.project-title {
    font-size: 2.4em; /* Ligeramente más grande para más impacto */
    color: var(--color-secondary, #003349); /* Usamos el color de texto oscuro */
    text-align: center;
    margin: 60px 0 30px; /* Margen superior y espaciado ajustados */
    font-weight: 700; /* Más peso para un titular */
    letter-spacing: normal; /* Eliminamos el espaciado para mejor lectura */
    position: relative;
    animation: fadeInUp 0.7s ease-out;
}

/* Estilo para el ícono de Font Awesome */
.project-title i.fas {
    color: var(--color-primary, #00b4d8); /* El ícono va en el color de acento */
    margin-right: 15px; /* Más espacio para separar el ícono del texto */
    font-size: 1em;
    vertical-align: middle;
}

/* Subrayado con degradado (manteniendo tu idea) */
.project-title::after {
    content: '';
    display: block;
    width: 100px; /* Un poco más largo */
    height: 5px; /* Un poco más grueso */
    margin: 15px auto 0; /* Más margen para separarlo del texto */
    /* Usamos tus variables de color para el degradado */
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary)); 
    border-radius: 3px;
}

/* ==================================
   13. VIDEOS YOUTUBE Y PROYECTOS
================================== */

/* Contenedor principal de cada proyecto (Videos + Descripción) */
.project-container {
    padding: 20px 0;
    margin-bottom: 40px; /* Espacio entre proyectos */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Estilo para la cuadrícula de videos */
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas iguales en desktop */
    gap: 20px;
    margin-bottom: 25px;
    padding: 0 20px;
}

/* Técnica de Aspect-Ratio para hacer los videos responsivos */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (340/600 * 100 = 56.66) */
    height: 0;
    overflow: hidden;
    border-radius: 8px; /* Bordes redondeados para un look moderno */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Estilo de la Descripción */
.description {
    font-size: 1.1em; /* Ligeramente más pequeño, más fácil de leer */
    font-weight: 500; /* Menos negrita, más profesional */
    color: var(--color-dark, #333); 
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.description a {
    color: var(--color-primary, #0066cc);
    text-decoration: none; /* Mejor sin subrayado inicial */
    transition: color 0.3s ease;
    font-weight: 600; /* La liga sí se destaca */
}
.description a:hover {
    text-decoration: underline;
    color: var(--color-secondary, #004999);
}

/* Responsividad para la cuadrícula de videos */
    @media (max-width: 900px) {
    .video-grid {
        grid-template-columns: 1fr; /* Una sola columna en móvil */
    }
}

/* ==================================
   14. MARCAS ASOCIADAS
================================== */
.brands-section {
 padding: 40px 20px 60px;
text-align: center;
background-color: var(--color-bg-light, #f4f4f4); 
 width: 100%; 
}

.brand-images {
 display: flex;
justify-content: center;
align-items: center; 
flex-wrap: wrap;
gap: 70px; 
max-width: 1200px; 
margin: 30px auto 0;
}

.brand-images img {
    /* ESTILOS FIJOS PARA QUE LA IMAGEN COMPUESTA SEA GRANDE */
    width: 450px; /* <--- Ancho fijo para cada imagen compuesta (ajusta si quieres más grande) */
    height: auto; /* Mantener la proporción */
    max-width: 100%; /* Asegurar que no se salga en móviles */
    display: block; /* Asegurar que ocupe su propio espacio */
    
    /* Mantenemos tus estilos visuales */
    object-fit: contain; 
    opacity: 0.7; 
    filter: grayscale(100%); 
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.brand-images img:hover {
    opacity: 1;
    filter: grayscale(0%); 
    cursor: default;
}
/* ==================================
   15. PIE DE PÁGINA (FOOTER)
================================== */
footer {
 background: #0099cc; /* Color azul fuerte */
 padding: 40px;
color: #eee; /* Texto en gris claro */
margin-top: 70px; /* Espacio con la sección anterior */
}

.Pie_pagina {
display: flex;
justify-content: space-between; /* Distribuye las dos columnas */
flex-wrap: wrap; /* Permite que las columnas salten en móvil */
max-width: 1200px; /* Limita el ancho del contenido */
margin: 0 auto;
}

.Pie_pagina .columna {
width: 48%; /* Da espacio entre las dos columnas principales */
}

/* Estilos de párrafo dentro del footer */
footer p {
    margin: 5px 0;
    line-height: 1.5;
    font-size: 15px;
}

.copy {
margin-top: 10px;
font-size: 14px;
}

/* Responsividad: En pantallas pequeñas, las columnas ocupan todo el ancho */
@media (max-width: 768px) {
.Pie_pagina .columna {
width: 100%;
margin-bottom: 20px;
 }
}   

