.servicios-overlay {
    padding: 80px 0;
    background: #f4f6f9;
}

.servicios-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0b1320;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.servicio-card {
    position: relative;
    height: 360px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.servicio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
}

.servicio-overlay h3 {
    font-size: 24px;
    color: #ffffff;
    line-height: 1.2;
}

.servicio-overlay p {
    font-size: 15px;
    color: #e5e7eb;
    line-height: 1.6;
    margin: 0;
}

.servicio-card:hover .servicio-overlay {
    background: rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
    .servicio-card {
        height: 300px;
    }

    .servicios-title {
        font-size: 30px;
    }
}
