/* Encabezado fijo */
.header {
    background-color: #feca16;
    color: #000;
    height: 140px; /* Altura fija */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px;
    flex-wrap: wrap;
    border-bottom: 6px solid #ffffff; /* Línea blanca al final */    
    padding: 30px 30px;
    border-top: #090102 solid 11px;
}

header img {
    width: 250px; /* Reduce el tamaño del logo */
    height: auto; /* Mantiene la proporción del logo */
}

header h1 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    flex-grow: 1;
}

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 1;
    flex-wrap: wrap;
}

/* Ajuste del título de la página */
.page-title {
    text-align: center;
}

.header .logo img {
    max-width: 180%;
    height: auto;
}

@media (max-width: 768px) {
    /* Otros estilos necesarios */
    .header {
        height: 200px;
        padding: 0px;
    }

    header img {
        width: 100px; /* Tamaño más pequeño para pantallas móviles */
    }

    .header .logo img {
        max-width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .page-title h1 {
        font-size: 24px;
    }
}
