:root {
    --color_letras: white;
    --background-color_header: rgb(8, 108, 56);
    --background-color_botones-header: rgb(225, 217, 206);
    --background-color_botones-header-hover: rgb(196, 216, 206);
    --header_height: 15vh;
}

/* @import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap'); */

header {
    width: 100%;
    height: var(--header_height);
    background-color: var(--background-color_header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 0 1%; */
    min-height: 100px;
}

#info_empresa {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

#logo {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#logo img {
    height: 70%;
    object-fit: contain;
}

#nombre_empresa {
    width: 25%;
    margin-top: 5px;
    flex: 1;
    text-align: center;
    font-weight: bold;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    justify-content: left;
    font-family: Arial, sans-serif;
}

#nombre_empresa a {
    width: 22%;
    height: auto;
}

#nombre_empresa img {
    width: 100%;
    height: auto;
    display: block;
}

#botones_header {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5%;
    padding-right: 2%;
}

#botones_header > a {
    width: auto;
    padding: 0.5em 1em;
    background-color: var(--background-color_botones-header);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: large;
    border-radius: 20px;
}

#botones_header > a:hover {
    background-color: var(--background-color_botones-header-hover);
}

.saludo-usuario {
    font-family: 'Pacifico', cursive;
    font-size: 1.5em;
    text-align: center;
    color: var(--color_letras);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
}

