/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: #f0f0f0;
    line-height: 1.6;
    font-size: 16px;
}

/* Header */
header {
    background-color: #fff;
    padding: 20px 10px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    height: 50px;
    margin-bottom: 10px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
}

/* Navegación */
nav {
    background-color: #333;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 20px;
}

nav a {
    color: #f0f0f0;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #00bcd4;
}

.nav-wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

/* Sección */
section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

/* Presentación */
.presentacion h1 {
    color: #00bcd4;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 600;
}

.presentacion p {
    margin-bottom: 30px;
    color: #d1d1d1;
    font-size: 1.1rem;
}

/* Imágenes de acceso rápido */
.imagenes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.imagen img {
    width: 100%;
    max-width: 180px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.imagen img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

/* Redes sociales */
.social_media {
    text-align: center;
    margin: 20px;
}

.social_media i {
    font-size: 2rem;
    margin: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social_media i:hover {
    transform: scale(1.1);
    color: #00bcd4;
}

.social_media p {
    margin-top: 5px;
    color: #bbb;
}

/* Agrupar redes por separado */
.redes_sociales {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Footer */
footer {
    background-color: #121212;
    color: #ccc;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 10px;
    border-top: 1px solid #333;
}

.footer_links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

footer a.button {
    background-color: #00bcd4;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    font-size: 1rem;
}

footer a.button:hover {
    background-color: #008c9e;
}

/* Responsive */
@media (max-width: 1024px) {
    .logo-container img {
        height: 45px;
    }

    nav a {
        font-size: 0.95rem;
        margin: 10px 10px;
    }

    .imagenes {
        flex-direction: column;
        align-items: center;
    }

    .redes_sociales {
        flex-direction: column;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .footer_links, .footer_direccion {
        width: 100%;
    }
}

@media (max-width: 600px) {
    header {
        padding: 15px 10px;
    }

    .logo-container {
        flex-direction: row;
        justify-content: flex-start;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .presentacion h1 {
        font-size: 1.5rem;
    }

    .presentacion p {
        font-size: 1rem;
    }

    .imagenes {
        gap: 15px;
    }

    .social_media i {
        font-size: 1.8rem;
    }

    footer {
        flex-direction: column;
        gap: 20px;
    }
}
.full-height {
    min-height: 100vh; /* El contenedor ocupará al menos toda la altura de la ventana */
}

/* Centra el contenido horizontal y verticalmente */
.d-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Evitar el uso de center y centrar la imagen correctamente */
.personalizado {
    text-align: center;
}

/* Imagen del WhatsApp */
.personalizado img {
    width: 100%;
    max-width: 200px; /* Ajustar el tamaño de la imagen a tu preferencia */
    margin-top: 20px;
}

/* Para darle un pequeño espacio entre los elementos */
.personalizado h5 {
    margin-bottom: 15px;
    color: #333; /* Cambia el color si lo prefieres */
    font-size: 1.2rem;
}

.certificacion-utn {
    background: linear-gradient(to right, #f4f9fc, #e6f4f1);
    padding: 30px 20px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contenedor-certificacion {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.texto-certificacion {
    flex: 1 1 400px;
    color: #2c3e50;
}

.texto-certificacion h2 {
    font-size: 1.8rem;
    color: #007399;
    margin-bottom: 12px;
}

.texto-certificacion p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.logos-utn {
    flex: 1 1 250px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}


.logos-utn {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-digital-junior {
    max-width: 220px;
    flex: 1 1 60%;
    border-radius: 8px;
    background: #fff;
    padding: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.logo-dav {
    max-width: 140px;
    flex: 1 1 35%;
    border-radius: 8px;
    background: #fff;
    padding: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .contenedor-certificacion {
        flex-direction: column;
        text-align: center;
    }

    .logos-utn {
        justify-content: center;
    }
}