@import url('https://fonts.googleapis.com/css2?family=Gravitas+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html, body{
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    background-color: #F8F9FB;
    color: #222222;
}
.container{
    max-width: 1240px;
}
.row{
    padding: inherit;
}
.main .row{
    padding: unset;
}
h1, h2, h3{
    font-family: "Gravitas One", serif;
    color: #000000;
}
h1{
    font-size: 36px;
}
h2{
    font-size: 28px;
    margin-bottom: 36px;
}
header{
    font-family: "Gravitas One", serif;
    background-color: #2E7D32;
    color: #FFFFFF;
    font-size: 24px;
    padding: 20px 0;
    margin-bottom: 56px;
}
section{
    margin-bottom: 60px;
}
.main{
    font-size: 18px;
}
.main ul{
    padding: 0;
    margin: 8px 0 16px;
}
.main ul li{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
}
.main ul li::before{
    content: '';
    max-width: 12px;
    width: 100%;
    height: 12px;
    border-radius: 100%;
    background-color: #2E7D32;
}
.btn{
    padding: 16px 24px;
    margin-top: 36px;
    border-radius: 4px;
    background-color: #2E7D32;
    color: #ffffff;
    text-decoration: none;
    width: fit-content;
}
.numeros{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.numeros img{
    width: 48px;
    height: 48px;
}
p span{
    font-size: 24px;
    color: #2E7D32;
    font-weight: 700;
}
.cta h2{
    margin-bottom: 16px;
}
.cta{
    padding: 24px 16px;
    background-color: #1565C01A;
    border-radius: 4px;
    text-align: center;
    font-size: 24px;
    color: #000000;
}
.cta p{
    margin-bottom: 0;
}
footer{
    background-color: #D4F5D4;
}
footer .container{
    padding: 24px 16px;
    font-size: 12px;
}
footer a{
    color: #0F8C14;
    font-size: 14px;
    text-decoration: none;
    font-family: "Gravitas One", serif;
}
footer p{
    margin-bottom: 16px;
}
.copyright{
    font-size: 14px;
    color: #00000066;
    text-align: center;
}
.support{
    padding: 53px 0;
}
.list{
    padding: 0;
    margin: 24px 0;
}
.list li{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
}
.list li::before{
    content: "";
    width: 24px;
    height: 24px;
    display: block;
    background: url(../img/done.svg) center/cover no-repeat;
}
.card{
    border-radius: 4px;
    border: none;
    padding: 24px 16px;
    background-color: #2E7D321A;
    text-align: center;
    font-size: 16px;
    height: 100%;
}
.card p{
    margin: 0;
}
.card .title{
    font-size: 24px;
    color: #000000;
    font-weight: bold;
    margin-bottom: 16px;
}
.card img{
    width: 80px;
    height: 80px;
    padding: 16px;
    background-color: #2E7D32;
    border-radius: 100%;
    margin: 0 auto 24px;
}
@media screen and (max-width: 500px){
    html, body{
        font-size: 16px;
    }
    .container{
        padding: 0 16px;
    }
    .main h1{
        text-align: center;
    }
    h1{
        font-size: 28px;
    }
    h2{
        font-size: 24px;
    }
    .main .btn{
        width: 100%;
    }
    p span{
        font-size: 18px;
    }
    section h2{
        text-align: center;
    }
    .card img{
        width: 48px;
        height: 48px;
        padding: 12px;
    }
    .support{
        padding: 20px 0 0;
    }
}