*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:"Oswald", serif;
    text-transform: uppercase;
}



h1,h2,h3,h4,h5,h6{
    margin: 0;
}

:root {
    --naranja:#fc4c04;
    --naranjaSecundario: #9f2f02;
    --verdePrincipal: #237f81;
    --verdeSecundario: #103738;
    --background:#fafafa;
    --background2:#dddbdb;
    --colorTitulos:#504f4f;
    --letraNavSize:2vh;
  }

body{
    background-color: var(--background);
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
    color: inherit;
}

/* NAVBAR */
.navbar{
    background-color: white;
    height: 10vh;
    z-index: 999;
    padding: 1vh 10vw;
    box-shadow:1px 1px 5px #b9d3d4;
    position: fixed;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--letraNavSize);
    /* font-weight: 800; */
}

.logo-nav{
    width: 250px;
    height: 50px;
    background-color: white;
}

.contenido-navbar{
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* gap: 3vw; */
    align-items: center;
}

.menu-principal-nav, .menu-social-nav{
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
}

.menu-social-nav{
    gap:1vw;
}

.menu-principal-nav{
    gap: 1.5vw;
}

.li-menu-principal, .li-menu-social{
    color: var(--verdePrincipal);
    font-size: var(--letraNavSize);
    font-weight: 400;
    a{
        color: #237f81;
        text-decoration: none;
    }

    &:hover{
        color: var(--verdeSecundario);
        cursor: pointer;
    }
}

.formulario-buscar{
    input,button{
        margin: 0 ;
        border-radius:1cap;
        font-weight: 400;
        font-size: var(--letraNavSize);
    }

    input{
        color: var(--verdePrincipal);
        width: 15vw;
        padding: .5vh;
        border:solid 2px var(--background2);

        &:hover{
            border: solid 2px var(--verdePrincipal);
        }
    }

    button{
        padding:.5vh;
        color: var(--naranja);
        border:solid 2px var(--naranja);
        background-color: white;
        &:hover{
            cursor: pointer;
            background-color: var(--naranja);
            color: white;
            

        }
    }
}

/* Menu desplegable */
.dropbtn {
    color: var(--verdePrincipal);
    font-size: var(--letraNavSize);
    font-weight: 400;
    padding: 1vh 0;

    &:hover{
        cursor: pointer;
        color: var(--verdeSecundario);
    }
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    border-radius:1cap;
    border: solid 1px rgb(224, 222, 222);
    background-color: white;
    width: 12vw;
    box-shadow: 0px 8px 16px 0px rgba(163, 160, 160, 0.2);
    z-index: 100;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: var(--verdePrincipal);
    padding: 6px;
    text-decoration: none;
    display: block;
    border-radius: 1cap;
    font-size: 1.8vh;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {color: var(--verdeSecundario);}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  

.dropdown-user, .dropbtn-user, .dropdown-content-user, .dropdown-content-user a{
    color: var(--naranja);

    &:hover{
        color: var(--naranjaSecundario);
    }
}




/* MAIN */
main{
    padding: 18vh 2.5vh 5vh 2.5vh;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    gap: 2vw;
    /* align-items: center; */
    width: 100%
}

.cuerpo-principal, .sidebarI, .sidebarD{
    /* border-radius: .5cap; */
    /* min-height: 100vh; */
    /* height: fit-content; */
}

.cuerpo-principal{
    /* flex: 7.5; */
    width: 75vw;
    /* border: solid 2px green; */
    overflow-x: hidden;
    padding: 0 1.5vh;
    margin-left: 150px;
    
    /* background-color: white;
    padding: 1.5vh; */
    /* border: solid 2px rgb(150, 55, 55); */
}

.sidebarI{
    /* flex: 1; */
    width: 10vw;
    /* border: solid 2px rgb(57, 55, 150); */
    display: flex;
    flex-direction: column;
    align-items: center;

}

.ul-sidebarI{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2vh;
}

.li-sidebarI{
    font-size: 2vh;

    i{
        color: #fc4c04;
        margin-right: .5vh;
    }

    a{
        color: #a0a0a0;
        font-weight: 300;
        &:hover{
            color: var(--verdeSecundario);
        }
    }
}



.sidebarD{
    /* flex: 1.5; */
    width: 10vw;
    color: #b3b3b3;
    /* border: solid 2px rgb(212, 0, 255); */
}


/* FOOTER */
footer{
    background-color: white;
    padding: 5vh;
    border-top: solid 1px #a9a9a9;

    li{
        list-style: none;
    }

    a{
        text-decoration: none;
        color: var(--colorTitulos);
        font-weight: 400;
    }
}

.contenido-footer{
    display: flex;
    justify-content: space-around;
    /* gap: 5vw; */
    width: 100%;
}

.texto-footer{
    color: #adadad;
    font-weight: 400;
}

.div-imagen-texto-footer, .div-contacto-social-footer{
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.contacto-suscribirse-footer{
    display: flex;
    flex-direction: column;
    a{
        color: #adadad;
        &:hover{
            color: var(--verdeSecundario);
        }
    }
}

.div-social-footer{
    display: flex;
    gap: 1vh;
    align-items: center;
}

/* requiere login */
.requiere-login-p{
    color: var(--colorTitulos);
    font-size: 3vh;
    font-weight: 400;
    text-align: center;

    a{
        color: var(--naranja);
        text-decoration: none;
    }
}