/* =======================
   ESTILOS DA SEÇÃO DE SERVIÇOS (CARDS)
   ======================= */
@charset "utf-8";

.servicos {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.servicos h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.container-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 280px;
    transition: transform 0.3s ease;
    text-align: center;
}

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

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 22px;
    color: #444;
    margin-bottom: 10px;
}

.card h4 {
    font-size: 18px;
    color: #666;
    margin-bottom: 8px;
}

.card p {
    font-size: 16px;
    color: #777;
}

.btn-saber-mais {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #FFD700;
    color: #333;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-saber-mais:hover {
    background: #e6c200;
}

/* =======================
   RESPONSIVIDADE
   ======================= */
@media (max-width: 1024px) {
    .card {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .container-cards {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 90%;
    }
}
