/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.header {
    background: 
        linear-gradient(rgba(11, 31, 58, 0.85), rgba(11, 31, 58, 0.85)),
        url("./assets/fondo1.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;

    text-align: center;
    padding: 40px 20px;
    border-bottom: 2px solid #C6A75E;
    color: white;
}


.logo-container img {
    width: 300px;
    height: auto;
    margin-bottom: 15px;
}

.logo-container h1 {
    font-size: 32px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
}

.subtitulo {
    font-size: 15px;
    color: #e0e0e0;
    margin-top: 8px;
    letter-spacing: 1px;
}

.nav ul {
    list-style: none;
    margin-top: 30px;
}

.nav ul li {
    display: inline-block;
    margin: 0 20px;
}

.nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav ul li a:hover {
    color: #C6A75E;
    border-bottom: 1px solid #C6A75E;
    padding-bottom: 5px;
}



@media (max-width: 768px) {

    .header {
        min-height: 350px;
        padding: 30px 15px;
    }

    .logo-container img {
        width: 180px;
        margin-bottom: 10px;
    }

    .logo-container h1 {
        font-size: 22px;
        letter-spacing: 0.5px;
    }

    .subtitulo {
        font-size: 13px;
    }

  
    .nav ul {
        margin-top: 20px;
        padding: 0;
    }

    .nav ul li {
        display: block;
        margin: 12px 0;
    }

    .nav ul li a {
        font-size: 14px;
    }

}