@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap');
*{
    font-family: "Mona Sans", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
p, a, h2, h1, h3, h4, button{
    letter-spacing: .02rem;
}
body{
    background-color: #f9f9f9;
}
p{
    font-size: 1.2rem;
    color: var(--title);
}
:root{
    --title:#222;
    --text:#404040;
    --main-color: #084ba6;
    --dark-main-color:#000930;
    --background-color:#f4ebeb;
}
a{
    text-decoration: none;
    color: inherit;
}
button{
    background-color: transparent;
    cursor: pointer;
    border: none;
}
ul, ol{
    list-style: none;
}
/*------------------ W-AC-I ------------------*/
.warning{
    height: 30px;
    background-color: var(--main-color);
    position: fixed;
    top: 65px;
    z-index: 20;
    width: 100%;
}
.warning__description{
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
    font-size: 15px;
}
/*------ genericos -----*/
.current-page{
    color: #000;
    font-weight: 600;
}
.hidden{
    display: none;
}
/*------- header ----------*/
.header{
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 20;
    top: 0;
    box-shadow: 0 0 20px 0 #222;
}
.header__wrapper{
    max-width: calc(100% - 60px);
    display: grid;
    grid-template-columns: repeat(2,1fr);
    margin: 0 auto;
    height: 65px;
    padding: 7px 0;
}
.header__logo{
    height: 100%;
    position: relative;
    z-index: 10;
}
.header__logo-link{
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
}
.header__logo-image{
    aspect-ratio: 3/3;
    height: 88%;
    position: absolute;
}
.header__nav{
    display: flex;
    justify-content: end;
    align-items: center;
}
.header__list{
    display: flex;
    list-style: none;
    gap: 0 2rem;
    margin: 0 auto;
}
.header__list-link{
    font-size: .95rem;
    font-weight: bold;
    color: #333;
}
.header__buttons{
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 6px;
}
.header__buttons-item{
    border-radius: 27px;
    border: 1px solid var(--main-color);
    background-color: transparent;
    font-size: .8rem;
    font-weight: bold;
}
.header__buttons-item--contact{
    background-color: var(--main-color);
    color: #fff;
    padding: 12px 30px;
    transition: background-color 170ms linear;
}
.header__buttons-item--contact:hover{
    background-color: #fff;
    color: var(--main-color);
    outline: 2px solid var(--main-color);
}
/*------------ contenido -------------*/
.content{
    padding: 20px;
    max-width: 1340px;
    margin: 90px auto;
}
.content__title{
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin-bottom: 27px;
}
.content__description{
    margin: 17px 0;
}
.content__list{
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 17px;
}
.list__list{
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.list__title{
    font-size: clamp(1.3rem, 5vw, 1.5rem);
    margin-bottom: 17px;
}
.list__item{
    font-size: 1.3rem;
}
.content ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 27px;
}
/*--------------------------- footer -------------------------*/
.footer ul{
    display: flex;
    list-style: none;
}
.footer{
    display: grid;
    grid-template-columns: 1fr 2fr;
    max-width: 1340px;
    width: calc(100% - 130px);
    margin: 0 auto;
    gap: 40px;
    padding: 100px 0 20px;
}
.footer__information{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer__logo{
    width: 60px;
}
.footer__slogan{
    max-width: 40ch;
    font-size: 1.1rem;
}
.footer__navigation{
    display: flex;
    justify-content: end;
    gap: 10%;
}
.footer__navigation-section{
    display: flex;
}
.footer__nav-list{
    gap: 17px;
    width: clamp(200px, 100%, 500px);
    flex-direction: column;
    font-size: 1.08rem;
}
.footer__social-list{
    gap: 10px;
    font-size: 1.3rem;
    
}
.footer__legal-list{
    font-size: 1rem;
    justify-content: end;
    gap: 20px;
}
@media(max-width:850px){
    .footer{
        width: calc(100% - 60px);
    }
}
@media(max-width:500px){
    .footer{
        grid-template-columns: 1fr;
    }
    .footer__navigation{
        justify-content: start;
    }
}