/* --- Contenedor Principal Módico (Celeste) --- */
.section-modico { 
    border: 1px solid rgba(6, 182, 212, 0.3) !important; 
    border-radius: 32px; 
    padding: 40px 25px 25px 25px; 
    margin-bottom: 60px;
    background: rgba(15, 33, 45, 0.4) !important; 
    backdrop-filter: blur(10px);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
}

/* --- Tarjeta de Trabajo Módico --- */
.section-modico .card-job {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(6, 182, 212, 0.15) !important;
    border-radius: 22px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hover con resplandor Cyan */
.section-modico .card-job:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.5) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 25px rgba(6, 182, 212, 0.2) !important;
}

/* --- Ribbon / Etiqueta Módico --- */
.section-modico .badge-modico {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%) !important;
    color: #ffffff !important;
    padding: 6px 15px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.7rem;
    border-radius: 0 0 10px 0;
    box-shadow: 2px 2px 10px rgba(6, 182, 212, 0.2);
}

/* --- Ubicación e Iconos --- */
.section-modico .location-text {
    color: #22d3ee !important; /* Celeste brillante */
    font-weight: 600;
    font-size: 0.85rem;
}

/* --- Botón de Acción Celeste Sólido --- */
.section-modico .btn-modico-action {
    /* Gradiente celeste vibrante */
    background: linear-gradient(135deg, #007bbd 0%, #00adef 100%) !important;
    color: #ffffff !important;
    border: none !important;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Sombra neón sutil */
    box-shadow: 0 10px 20px -5px rgba(0, 173, 239, 0.4);
}

.section-modico .btn-modico-action:hover {
    transform: scale(1.02);
    filter: brightness(1.15);
    /* Aumenta el resplandor al pasar el mouse */
    box-shadow: 0 15px 25px -5px rgba(0, 173, 239, 0.6);
}

.section-modico .btn-modico-action:active {
    transform: scale(0.98);
}