.servicos {
    padding: 60px 20px;
    text-align: center;
}

.servicos h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.subtitulo {
    color: #ffffff;
    margin-bottom: 40px;
}

/* GRID */
.grid-servicos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 25px;
    border-radius: 16px;
    text-align: left;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

/* efeito hover */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* icone */
.icone {
    font-size: 28px;
    margin-bottom: 15px;
}

/* titulo */
.card h3 {
    margin-bottom: 10px;
}

/* descrição */
.descricao {
    font-size: 0.95rem;
    color: #cbd5f5;
    margin-bottom: 10px;
}

/* benefício (destaque) */
.beneficio {
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* botão */
.btn-card {
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    border-bottom: 1px solid white;
    transition: 0.2s;
}

.btn:hover {
    opacity: 0.7;
}

.destaque {
    background-color: rgba(255, 255, 255, 0.258);
    display: flex;
    justify-content: center;
    padding: 10px 10px;
    border-radius: 8px;
}

.intro1 {
    display: flex;
    justify-content: center;
    color: #ffffff;
}



.intro2 {
    color: bisque;
}

.diferenciais-section {
    padding: 60px 20px;
}

/* container principal */
.container-diferenciais {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* TEXTO */
.texto {
    flex: 1;
}

.texto h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.descricao {
    color: #ffffff;
    margin-bottom: 20px;
}

.btn-whatsapp {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
    /* centraliza */

    padding: 14px 24px;
    background-color: #25D366;
    /* verde WhatsApp */
    color: white;

    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;

    transition: 0.3s;
}

/* efeito hover */
.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
}

/* LISTA */
.lista {
    list-style: none;
    padding: 0;
}

.lista li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

/* .lista li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0ea5e9;
} */

/* VISUAL */
.visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.box-visual {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 300px;
        text-decoration: none;

}

.box-visual span {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.final {
    text-align: center;
    padding: 60px 20px;
}

/* título */
.final h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* subtítulo */
.final .sub {
    color: #ffffff;
    margin-bottom: 30px;
}

/* container dos botões */
.botoes {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* botão base */
.btn {
    padding: 14px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

/* botão WhatsApp (principal) */
.whatsapp {
    background-color: #25D366;
    color: white;
}

.whatsapp:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
}

/* botão secundário */
.secundario {
    border: 2px solid #333;
    color: #333;
}

.secundario:hover {
    background-color: #333;
    color: white;
}


/* RESPONSIVIDADE */

@media (max-width: 600px) {
    .grid-servicos {
        grid-template-columns: 1fr;
    }

    .container-diferenciais {
        flex-direction: column;
        text-align: center;
    }

    .visual {
        margin-top: 20px;
    }

    .grid-servicos {
        grid-template-columns: repeat(2, 1fr);
    }
}
