/* CSS Document */

.services-full-section {
    padding: 60px 0;
    background: #fff;
}

/* TITULO */
.services-full-section .section-title h2 {
    font-size: 34px;
    font-weight: 700;
}

.services-full-section .line {
    width: 70px;
    height: 4px;
    background: var(--accent);
    margin: 10px auto 40px;
    border-radius: 30px;
}

/* SLIDE FULL WIDTH */
.service-slide {
    position: relative;
    width: 100%;
    height: 500px; /* ?? IMAGEN GRANDE */
    overflow: hidden;
}

.service-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: .5s;
}

/* overlay texto */
.service-slide .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    color: #fff;
}

.service-slide .overlay h3 {
    font-size: 28px;
    font-weight: 700;
}

/* CONTROLES ABAJO */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.control-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 20px;
    transition: .3s;
}

.control-btn:hover {
    opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .service-slide {
        height: 320px;
    }

    .service-slide .overlay h3 {
        font-size: 20px;
    }
}
