/* --- Contenedor Principal Módico (Celeste) --- */
.section-modico { 
    border: 1px solid rgba(0, 173, 239, 0.3) !important; 
    border-radius: 32px; 
    padding: 40px 25px 25px 25px; 
    margin-bottom: 60px;
    background: rgba(15, 33, 45, 0.4) !important; /* Fondo con un toque azulado profundo */
    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.8);
    border: 1px solid rgba(0, 173, 239, 0.1) !important;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

/* Hover con brillo Celeste */
.section-modico .card-job:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 173, 239, 0.5) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(0, 173, 239, 0.2) !important;
}

/* --- Ribbon / Etiqueta Módico (Listón Celeste) --- */
.section-modico .ribbon-modico {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px; 
    height: 30px;
    background: linear-gradient(135deg, #007bbd 0%, #00adef 100%) !important;
    color: #ffffff !important;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Icono de Ubicación y Títulos --- */
.section-modico .bi-geo-alt-fill {
    color: #00adef !important; /* Pin de ubicación celeste */
}

.section-modico .job-title {
    font-weight: 700;
    color: #ffffff;
}

/* --- Contenedor de Información (Badges) --- */
.section-modico .info-badge-container {
    background: rgba(20, 35, 50, 0.6); /* Fondo azul noche oscuro */
    border: 1px solid rgba(0, 173, 239, 0.2);
    border-radius: 16px;
    padding: 15px;
}

.section-modico .info-label {
    text-transform: uppercase;
    color: #00adef; /* Etiquetas en color celeste brillante */
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-modico .info-value {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- Botón de Acción Celeste --- */
.section-modico .btn-ver-postulacion {
    background: linear-gradient(135deg, #007bbd 0%, #00adef 100%) !important;
    color: #ffffff !important;
    height: 50px;
    border-radius: 14px;
    border: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(0, 173, 239, 0.4);
    cursor: pointer;
}

.section-modico .btn-ver-postulacion:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
    box-shadow: 0 15px 25px -5px rgba(0, 173, 239, 0.5);
}