/* Estructura de grid */
.servicios-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    padding: 30px 0;
}

/* Tarjetas de servicio */
.servicio-card {
    width: 280px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    background: white;
}
._reglon {
    background-color: transparent;
    text-align: center;
    padding: 1.5rem 1rem;
}
._reglon > ._titulo {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: #009933;
}

.servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card-header {
    padding: 15px;
    border-radius: 13px 13px 0 0 !important;
}

.card-title {
    color: #fff;
    margin: 0;
    text-align: center;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-body {
    padding: 20px;
}

.card-description {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
}

/* Modales */
.modal-content {
    border-radius: 15px !important;
    border: none;
}

.modal-header {
    border-radius: 13px 13px 0 0 !important;
    color: #fff;
}

.modal-title {
    display: flex;
    align-items: center;
}

/* Secciones de proceso */
.proceso-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.paso {
    padding: 12px 0 12px 15px;
    height: 100%;
    transition: all 0.3s ease;
}

.alert-custom {
    border-radius: 8px;
    background: #fff;
}

/* Responsividad */
@media (max-width: 768px) {
    .servicio-card {
        width: 100%;
        max-width: 350px;
    }
    
    .modal-dialog {
        margin: 10px;
    }
    
    .proceso-section .row > div {
        margin-bottom: 15px;
    }
}
