/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Fondo general */
body {
    background: #f7f7f7;
    color: #333;
}

/* -------------------- HEADER -------------------- */
header {
    background: linear-gradient(to right, #0077c2, #00b4d8);
    color: white;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.25);
}

header h1 {
    margin-top: 20px;
    font-size: 2.2rem;
    letter-spacing: 1px;
}

/* -------------------- MENÚ -------------------- */

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
}

.nevbar ul {
    display: flex;
    list-style: none;
}

.nevbar ul li {
    margin-left: 20px;
}

.nevbar ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    transition: 0.3s;
}

.nevbar ul li a:hover {
    background: rgba(255,255,255,0.2);
}

/* -------------------- CONTENIDO PRINCIPAL -------------------- */

.container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 20px;
}

.info {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    text-align: center;
}

/* Imagen circular */
.info img {
    border-radius: 50%;
    border: 5px solid #0077c2;
    margin-bottom: 20px;
    object-fit: cover;
}

.info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* -------------------- MAPA -------------------- */
iframe {
    width: 100%;
    border-radius: 15px;
    margin-top: 20px;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        text-align: center;
    }

    .nevbar ul {
        margin-top: 15px;
        flex-direction: column;
    }

    .nevbar ul li {
        margin: 10px 0;
    }

    header h1 {
        font-size: 1.6rem;
    }
}
