body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}



header {
    background-color: #ccced8;
    padding: 10px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ccced8;
    padding: 10px;
}

.logo {
    width: 60px;
    height: auto;
    margin-right: 15px;
}
/* Menú desplegable */ 
.login-dropdown { 
    display: none; 
    position: absolute; 
    background-color: white; 
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2); 
    padding: 10px; 
    border-radius: 5px; 
    text-align: left; 
} 
.login-dropdown a { 
    display: block; 
    padding: 8px; 
    text-decoration: none; 
    color: black; } 

.login-dropdown a:hover { 
    background-color: #f0f0f0;
 }

 .login-button { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 6px 20px; 
    font-size: 16px; 
    font-weight: bold; 
    border: none; 
    border-radius: 8px; 
    cursor: pointer; 
    background: linear-gradient(90deg, #00c6ff, #0072ff); 
    color: rgb(255, 255, 255); 
} 

#loginButton { 
    background: linear-gradient(90deg, #00c6ff, #0072ff); 
    color: rgb(7, 7, 7); 
    padding: 6px 20px; 
    font-size: 16px; 
    font-weight: bold; 
    border: none; 
    border-radius: 8px; 
    cursor: pointer; 
    transition: all 0.3s ease-in-out; 
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3); 
} 
#loginButton:hover { 
    transform: scale(1.1); 
    box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.4); 
} 
#loginButton:active {
     transform: scale(0.95); 
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: bold;
    padding: 10px 15px;
}

.menu-toggle {
    display: none;
}
@media screen and (max-width: 768px) {
    .nav-menu {
        display: none; 
        flex-direction: column;
        background-color: #3f51b5;
        position: absolute;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        text-align: center;
        padding: 15px;
        border-radius: 10px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        font-size: 16px;
        padding: 10px;
        display: block;
        text-align: center;
        color: white;
        text-decoration: none;
    }
    .nav-menu {
        position: absolute;
        top: 10px; 
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000; 
        width: 90%;
        background-color: #3f51b5;
        padding: 15px;
        border-radius: 10px;
    }

    .carousel {
        position: relative;
        z-index: 1; 
    }


    .menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        position: absolute;
        right: 15px;
        top: 15px;
    }

    .menu-toggle span {
        background-color: white;
        width: 30px;
        height: 3px;
        margin: 5px;
        display: block;
    }