/* Estilos generales */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    background-color: #252F48;
}

/* Pantalla de inicio con imagen fija */
.inicio {
    position: relative;
    height: 100vh;
    background-image: url('img/image\ 1.jpg');
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 47, 72, 0.75); /* Oscurecimiento */
}

.contenedor-botones {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Estilos generales para botones */
.boton {
    padding: 15px 30px;
    margin: 10px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    color: white;
}

/* Botón de Sign Up con color específico */
.boton-signup {
    background-color: #D16D79;
}

.boton-signup:hover {
    background-color: #252F48; /* Azul oscuro al pasar el cursor */
}

/* Botón de Log In con color específico */
.boton-login {
    background-color: #1BBCB6;
}

.boton-login:hover {
    background-color: #252F48; /* Azul oscuro al pasar el cursor */
}

/* Barra de navegación fija que aparece al hacer scroll */
header {
    position: fixed;
    top: -100px; /* Comienza oculta */
    width: 100%;
    background-color: #252F48;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    transition: top 0.3s; /* Transición para hacer que aparezca suavemente */
}

.logo img {
    height: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Secciones posteriores */

section {
    padding: 100px 20px;
    text-align: center;
    color: white;
}

#quienes-somos {
    padding: 50px;
    background-color: #252F48;
}

.contenido {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.texto {
    flex: 1;
    margin-right: 20px;
}

.imagen {
    flex: 1;
    text-align: center;
}

.imagen img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Redondeo de bordes, opcional */
}

@media (max-width: 768px) {
    .contenido {
        flex-direction: column; /* En pantallas pequeñas, la imagen y texto irán uno sobre el otro */
    }

    .texto {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

#map {
    width: 100%;  /* Asegura que el mapa ocupe todo el ancho del contenedor */
    height: 400px; /* Ajusta la altura para móviles */
}

@media (max-width: 768px) {
    #map {
        height: 300px; /* Ajusta la altura del mapa para pantallas más pequeñas */
    }
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: white;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}

/* Responsividad */
@media (max-width: 768px) {
    nav ul {
        justify-content: center;
    }

    nav ul li {
        margin-left: 10px;
    }
}
