body{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif !important;
}

/* cabecalho */

.btn-rodape{
    width: 200px;
    background-color: #ffffff;
    color: rgb(0, 109, 18);
    padding: 10px;
    border: none;
    border-radius: 20px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-rodape:hover{
    background-color: rgb(0, 109, 18);
    color: white;
}

.nav-link{
    color: white !important;
}

.nav-link:hover{
    color: #d9ffdc !important;
}

/* Geral */

.modo-flex{
    display: flex;
    justify-content: center;
    align-items: center;
}

.titulo-secao{
    color: #32CD32;
}

.cor-principal{
    background-color: #009e08;
}

#inicio{
    margin-top: 75px;
}

.subtitulo-secao{
    color: #243d2a;
    font-size: 16px;
    max-width: 550px;
}

/* servicos */

.servicos{
    background-color: rgb(152, 255, 166);
}

.servicos img{
    width: 120px;
}

.servicos p, h5{
    text-align: left;
}

.servicos p{
    font-size: 16px;
}

.subtitulo-servico{
    margin-top: 15px;
    color: #005500;
}

/* sobre */

.sobre-titulo{
    font-size: 40px;
    font-weight: bolder;
    color: #008800;
    margin-bottom: 20px;
}

#quem-somos button{
    width: 200px;
    background-color: #13a026;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    transition: 0.3s;
}

#quem-somos button:hover{
    background-color: rgb(0, 105, 14);
}

/* planos */

.card-plano{
    background-color: white;
    width: 300px;
    height: 430px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    margin-bottom: 40px;
    transition: transform 0.3s;
}

.card-plano:hover{
    transform: scale(1.1);
}

.texto-mega{
    background-color: #009e08;
    text-align: center;
    padding: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.texto-mega h3{
    color: white;
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 5px;
}

.texto-plano{
    color: #012709;
    font-weight: bold;
    font-size: 16px;
    font-style: italic;
}

.conteudo-card{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.preco-plano{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    padding-bottom: 8px;
}

.preco{
    font-size:48px;
    font-weight: bold;
}

.mensal{
    color: #605a5a
}

.itens-plano{
    margin-top: 10px;
}

.item{
    list-style-type: none;
}

.btn-assine{
    background-color: #32CD32;
    color: white;
    border-radius: 50px;
    width: 185px;
    height: 50px;
    font-weight: bold;
    border: solid 1px green;
    box-shadow: 0 4px 4px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: 0.4s;
}

.btn-assine:hover{
    background-color: #008800;
}

#planos h3{
    font-size: 40px;
    font-weight: bolder;
}

/* depoimentos */

#clientes{
    background-color: rgb(244, 255, 245);
}

.card-cliente{
    background-color: #ffffff;
    max-width: 400px;
    box-shadow: 2px 2px 2px rgb(15, 219, 66);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 10px;
}

.texto-cliente{
    text-align: center;
    margin-bottom: 40px;
}

.card-cliente p{
    text-align: center;
    font-style: italic;
    color: #00b35f;
    font-size: 16px;
}

.card-cliente h3{
    font-size: 20px;
    font-weight: bolder;
    margin-bottom: 20px;
}

.foto-cliente img{
    width: 100px;
    height: 100px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/*contato */

.formulario-titulo{
    color: #269e26;
    font-size: 25px;
    font-weight: bolder;
}

.redes-cor{
    color: #269e26;

}

.formulario-btn{
    width: 100%;
    background-color: #269e26;
    color: white;
    padding: 8px;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    transition: 0.3s;
}

.formulario-btn:hover{
    background-color: rgb(0, 99, 13);
}

#contato textarea{
    height: 120px;
}

/* rodape */

.rodape{
    background-color: #116600;
}

.navegacao-rodape{
    list-style: none;
    color: white;
}

.navegacao-rodape a{
    text-decoration: none;
    color: white;
}

.navegacao-rodape a:hover{
    color: #b7ffc3 !important;
}

.credito-rodape{
    background-color: #004d11;
}

@media (max-width: 768px) {

    #planos h3{
        font-size: 30px;
        font-weight: bolder;
    }

    .rodape p{
        font-size: 14px;
    }

}