.dicas-section {
    max-width: 980px;
}

.dicas-divider {
    opacity: 0.12;
    margin-bottom: 1.5rem;
}

.dicas-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dicas-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.09);
    border-color: rgba(13, 110, 253, 0.18);
}

.dicas-card-img {
    width: 100%;
    height: 100%;
    min-height: 170px;
    max-height: 170px;
    object-fit: cover;
    display: block;
}

.dicas-card-body {
    padding: 1.25rem 1.35rem;
}

.dicas-card .card-title {
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.dicas-card .card-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6b7280;
}

.dicas-card .btn {
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .dicas-card-img {
        min-height: 180px;
        max-height: 180px;
        border-radius: 0;
    }

    .dicas-card-body {
        padding: 1rem;
    }

    .dicas-card .card-title {
        font-size: 1rem;
    }

    .dicas-card .card-text {
        font-size: 0.92rem;
    }
}