.planes img, .img-plan {
    max-width: 100%; /* indica que la imagen no debe exceder el ancho del contenedor */
    width: 100%; /* la imagen ocupará todo el ancho disponible del contenedor */
    height: auto; /* la altura se ajusta automáticamente para mantener la proporción */
    border-radius: 8px; /* bordes redondeados */
    border: 1px solid #4ecdc4; /* borde */
    background: #fff; /* fondo blanco */
    display: block; /* para centrar la imagen */
    margin: 1rem auto; /* margen superior e inferior de 1rem, centrado horizontalmente */
}

.img-mapa {
    max-width: 100%; /* indica que la imagen no debe exceder el ancho del contenedor */
    width: 100%; /* la imagen ocupará todo el ancho disponible del contenedor */
    height: auto; /* la altura se ajusta automáticamente para mantener la proporción */
    border-radius: 8px; /* bordes redondeados */
    border: 1px solid #4ecdc4; /* borde */
    background: #fff; /* fondo blanco */
    display: block; /* para centrar la imagen */
    margin: 1rem auto; /* margen superior e inferior de 1rem, centrado horizontalmente */
}

.Figma {
    display: flex;
    font-weight: bold;
    color: #333;
    justify-content: center;

}

.Figma:hover {
    color: #4ecdc4;
    cursor: pointer;
    transition: transform 0.2s;
    transform: scale(1.1);
}

.integrantes-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.integrante {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.Integrantes {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.NombresIntegrantes {
    text-align: center;
    font-weight: bold;
    color: #333;

}

.NombresIntegrantes:hover {
    color: #4ecdc4;
    cursor: pointer;
    transition: transform 0.2s;
    transform: scale(1.1);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7f7f7;
    color: #222;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

header {
    background: #4ecdc4;
    color: #fff;
    padding: 1.5rem 2rem;
    text-align: center;
}

main {
    max-width: 60%;
    margin: 2rem auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 2rem;
}

footer {
    text-align: center;
    color: #888;
    padding: 1rem;
    font-size: 0.9rem;
}

.nav-horizontal {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-horizontal li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-horizontal li a:hover {
    color: #4e85cd;
}

.Integrantes {
    display: inline-block;
    gap: 100px;
    margin-top: 1rem;
    width: 200px;
    height: 200px;
    overflow: hidden;
    border: 2px solid #4ecdc4;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);

}

img.logotipos {
    display: block;
    margin-left: 0;
    margin-right: auto;
    height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left;
}

footer {
    text-align: center;
    color: #888;
    padding: 1.5rem 1rem 1rem 1rem;
    font-size: 0.95rem;
    background: var(--color-footer);
    border-top: 1px solid #e0e0e0;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 700px) {
    main {
        padding: 1.2rem 0.5rem;
        max-width: 100%;
    }
    .integrantes-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

@media (max-width: 700px) {
    .Integrantes {
        width: 120px;
        height: 120px;
        border-radius: 0;
    }
    .integrante {
        padding: 1rem 0.5rem;
    }
    header nav ul {
        flex-direction: column;
        gap: 0.7em;
    }
}
/* Mostrar imágenes de logotipos a tamaño real */
img.logotipos {
    display: block;
    margin-left: 0;
    margin-right: auto;
    height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left;
}

.video {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;

}