*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    width: 100%;
    overflow-x: hidden;
}
   .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #E0F2FE;
    padding: 15px 20px;
    color: #BAE6FD;
    position: relative;
}
.hamburger {
    background: none;
    border: none;
    color: #0F172A;
    font-size: 28px;
    cursor: pointer;
}
.logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.logo img {
    max-width: 130px; 
    max-height: 60px;
    object-fit: contain;
}
.nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #E0F2FE;
    padding: 0;
    margin: 0;
    list-style: none;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.3);
}
.nav-list.active {
    display: flex;
}
.nav-list li a {
    display: block;
    padding: 15px 20px;
    color: #0F172A;
    text-decoration: none;
    border-bottom: 1px solid #BAE6FD;
    font-family: Arial, sans-serif;
    font-weight: bold;
}
.nav-list li a:hover {
    background-color: #BAE6FD;
    color: #0F172A;
}
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
    .nav-list {
        display: flex;
        flex-direction: row; 
        position: static; 
        width: auto;
        background-color: transparent;
        box-shadow: none;
    }
    .nav-list li a {
        border-bottom: none; 
        padding: 10px 15px;
    }
    .btn-sesion {
        border: 1px solid #38BDF8;
        border-radius: 20px;
        margin-left: 10px;
    }
}
