body {
    font-family: 'Poppins', sans-serif;
}

h1, h2 {
    font-weight: 500;
    color: rgb(235, 218, 168);
}

#bloco-imagem-crop {
    min-height: 500px;
    background-image: url('img/mulher-fundo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#secao1, #secao3 p {
    font-size: 1.7em;
    font-weight: 400;
    color: rgb(255, 255, 255);
}

#bloco-logo-texto, #block-como-ajudar, #secao3 {
    background-color: #004138;
}

.card-text {
    font-size: 1.2em;
}

.cards-servicos{
    width: 18rem;
}

.cards-servicos img {
    width: 150px;
}

#rodape-cnpj-endereco {
    font-size: small;
}

/* Classes responsivas */
.h1-md {
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .h1-md {
        font-size: 1.8rem;
    }
    
    #bloco-imagem-crop {
        min-height: 200px;
    }
    
    .cards-servicos {
        margin: 0 10px;
    }
    
    .cards-servicos img {
        max-width: 80%;
        height: auto;
    }
}

/* Estilos dos cards */
.cards-servicos {
    transition: transform 0.3s ease;
    border: none;
    background-color: #f8f9fa;
}

.cards-servicos:hover {
    transform: translateY(-5px);
}

.cards-servicos img {
    max-width: 100%;
    height: auto;
    padding: 1rem;
}

/* Estilos do footer */
footer {
    padding: 1rem 0;
    background-color: #198754;
    color: white;
}

#rodape-cnpj-endereco {
    font-size: 0.7rem;
}

/* Ajustes de espaçamento */
.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

@media (min-width: 768px) {
    .px-md-4 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}