/* SECCIÓN DE SERVICIOS */
.servicios-section {
    padding: 80px 0;
    background-color: #0d0d0d;
    background: url('img/fondo-nosotros.jpg') center/cover no-repeat;
}

@media (max-width: 991px) {
    .servicios-section {
        padding-top: 130px;
    }
}

.servicios-section .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d4af37;
    text-transform: uppercase;
}

.servicios-section .section-subtitle {
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* TARJETAS DE SERVICIOS */
.servicio-card {
    background: #111;
    padding: 40px 25px;
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: 0.3s ease;
    height: 100%;
}

.servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
    border-color: #d4af37;
}

/* ICONOS */
.servicio-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    border: 2px solid #d4af37;
}

.servicio-icon i {
    font-size: 2rem;
    color: #d4af37;
}

.servicio-card h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.servicio-card p {
    color: #ccc;
    font-size: 1rem;
}