/*
Puntos de Interrupción (Breakpoints) Principales:
Móviles (Retrato): 320px - 480px (Anchos comunes: 360px, 375px).
Tablets (Retrato): 600px - 768px (Ancho común: 768px).
Laptops/Tablets (Horizontal): 1024px - 1280px.
Escritorio: 1366px - 1920px (Anchos comunes: 1366px, 1440px, 1920px). 
*/

:root{
    --verde-primario: #242c1f;
    --arena-secundario: #fff9d4;
    --arena-hover: #c2b980;
    --verde-medio: #87A077;
}

html{
    box-sizing: border-box;
    font-size: 62.5%;
}

*, *:before, *:after{
    box-sizing: inherit;

}

body{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px; /* 1rem = 10px*/
    background-color: var(--verde-medio);
}
/*HEADER*/
header{
    background-color: var(--arena-secundario);
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/*verificar por que el logo y el menu hamburguesa suben cuando se clickea el  menu*/

header figure{
    margin: 0;
    padding: 1rem;
    width: 28rem;
}
header img.logo{
    width: 26.8rem;
}

header a.menu-burguer{
    font-size: 3rem;
    display: none;
    padding-right: 1rem;
    align-items: center;
    text-decoration: none;
    color: var(--verde-primario);
    cursor: pointer;
    font-weight: bold;
}

.d-flex{
    display: flex;
}

.navegacion-principal{
    align-items: center;
    justify-content: space-around;
    padding-right: 1rem;
    margin-left: 1rem;
    margin-top: auto;
}

.navegacion-principal a{
    color: var(--verde-primario);
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 2rem 0.5rem;
    text-decoration: none;
    text-align: center;
    margin-top: auto;
    display: block;
}

.navegacion-principal a:hover{
    padding-bottom: 1.5rem;
    border-bottom: 0.5rem solid var(--verde-primario);
}

@media (width <= 875px){
    .navegacion-principal a{
        font-size: 1.35rem;
    }
}

@media (width <= 768px){

    header{
        flex-wrap: wrap;
    }
    
    .navegacion-principal{
        width: 100%;
        flex-direction: column;
        display: none;
    }
    
    header a.menu-burguer{
        display: flex;
        justify-content: center;
    }

    .resp-act{
        display: flex;
    }
}/*FIN HEADER*/