/* CSS Document */

.sv4-services-section {
    padding: 70px 0;
    background: #fff;
}

/* TITULO */
.sv4-title h2 {
    font-size: 34px;
    font-weight: 700;
}

.sv4-line {
    width: 70px;
    height: 4px;
    background: var(--sv4-accent);
    margin: 10px auto 35px;
    border-radius: 20px;
}

/* CARD */
.sv4-card {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.sv4-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .4s;
}

.sv4-card h5 {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* hover zoom */
.sv4-card:hover img {
    transform: scale(1.06);
}

/* CONTROLES */
.sv4-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.sv4-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 6px;
    transition: .3s;
}

.sv4-btn:hover {
    opacity: .8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .sv4-card img {
        height: 200px;
    }
}