body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans';
    background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
    min-height: 100vh;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}
header {
    padding: 30px;
    text-align: center;
    color: #003d81;
}
header h1 {
    font-size: 60px;
    line-height: 90px;
    font-weight: bold;

}
header h2 {
    font-size: 30px;
    line-height: 42px;
   
}
.description {
    max-width: 900px;
    padding: 0 20px;
    width: 100%;
}

.description > p {
    margin: 0 auto;
    margin-bottom: 10px;
    line-height: 20px;
    max-width: 700px;
    text-align: justify;
}
.plans {
    margin-bottom: 30px;
}
.plans p {
    margin-block: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 17px;
}

.list li:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    background-color: #003d81;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    
    min-height: 40px;
    transition: 300ms ease-in-out; 
    cursor: pointer;   
}

.list li .btn-plano{
    color: #ffffff;
}



.list li:last-child:hover {
    background: rgba(0, 61, 129, 0.6);
}

.list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.list li {
    background: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.social-midia {
    margin-bottom: 20px;
}
.list-social-midia {
    display: flex;
    gap: 4px;
}
.list-social-midia li {
    border-radius: 50%;
    border: 1px solid transparent;
    transition: 0.3s;
}
.list-social-midia li a {
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.list-social-midia li:hover {
    border-color: #5cb4fb91;;
}
.address {
    padding-bottom: 20px;
}
.address p {
    margin-bottom: 5px;
    line-height: 115%;
}
@media (max-width: 768px) {
    header{
        padding-bottom: 20px;
    }
    header h1 {
        font-size: 28px;
        line-height: 35px;
    }
    header h2 {
        font-size: 18px;
        line-height: 20px;
    }
    .descricao {
        text-align: justify;
    }
    .list {
        grid-template-columns: 1fr;
    }
    .address {
        padding-inline: 20px;
        text-align: center;
    }
}
