@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Bebas+Neue&family=Dancing+Script:wght@700&family=Inconsolata:wght@200..900&family=Jersey+25&family=Lobster&family=Pacifico&family=Passion+One:wght@400;700;900&family=Quicksand:wght@300..700&family=Viga&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');


#info_header {
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: var(--color_corporativo);
}

/* GENERAL */
* {
    font-family: "Inconsolata", monospace;
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

body {
    position: relative;

    overflow-x: hidden; 
    line-height: 1.6;
    color: #333;
    background-color: var(--background_uno);
}

.row {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.column {
    padding-left: 0.5vw;
    display: flex;
    flex-direction: column;
}

:root {
    --color_corporativo: rgb(64, 127, 25);
    --background_uno: rgb(238, 229, 229);
}

.texto_gris {
    color: rgb(75, 75, 75);
}

.mitad {
    z-index: 99;
    position: relative;
    width: 50%;
}

.seccion {
    position: relative;
    display: flex;
    text-align: left;
    margin-bottom: 5vw;
    color: black;

    background-color: var(--background_uno);
}


/* HEADER */
header {
    position: sticky;
    top: 0;

    z-index: 99999999;
    background: white;
    color: black;
    padding: 15px 15vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    border: solid rgb(193, 193, 193) 0.1vw;
}

.logo_header {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo_header img {
    max-height: 50px;
    margin-right: 10px;
}

.logo_header .header_azaroa {
    font-size: 1.5vw;
    font-weight: 999;
    color: var(--color_corporativo);
}

nav .menu {
    list-style: none;
    display: flex;
    gap: 3vw;
}

nav .menu li {
    margin: 0;
}

nav .menu li a {
    font-size: 1.2vw;
    text-decoration: none;
    color: var(--color_corporativo);
    font-weight: 999;
    transition: color 0.3s ease;
}

nav .menu li a:hover {
    color: #ffdd57;
}

/* FOOTER */
footer {
    z-index: 999;
    position: relative;
    text-align: center;
    padding: 20px;
    background: #343a40;
    color: white;
}

footer a {
    color: white;
}
