/* --- Contenedor Principal Básico --- */
.section-basico { 
    border: 1px solid rgba(166, 124, 82, 0.3) !important; 
    border-radius: 32px; 
    padding: 40px 25px 25px 25px; 
    margin-bottom: 60px;
    background: rgba(28, 20, 15, 0.4) !important; /* Fondo con un toque cálido */
    backdrop-filter: blur(10px);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
}

/* --- Tarjeta de Trabajo Básico --- */
.section-basico .card-job {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

/* Hover con brillo Bronce */
.section-basico .card-job:hover {
    transform: translateY(-10px);
    border-color: rgba(166, 124, 82, 0.5) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(166, 124, 82, 0.1) !important;
}

/* --- Ribbon / Etiqueta Básico (Listón Bronce) --- */
.section-basico .ribbon-basico {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px; 
    height: 30px;
    background: linear-gradient(135deg, #804a00 0%, #a67c52 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-basico .bi-geo-alt-fill {
    color: #a67c52 !important; /* Pin de ubicación bronce */
}

.section-basico .job-title {
    font-weight: 700;
    color: #ffffff;
}

/* --- Contenedor de Información (Badges) --- */
.section-basico .info-badge-container {
    background: rgba(38, 28, 20, 0.6); /* Fondo ligeramente café oscuro */
    border: 1px solid rgba(166, 124, 82, 0.15);
    border-radius: 16px;
    padding: 15px;
}

.section-basico .info-label {
    text-transform: uppercase;
    color: #a67c52; /* Etiquetas en color bronce suave */
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-basico .info-value {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- Botón de Acción Bronce --- */
.section-basico .btn-ver-postulacion {
    background: linear-gradient(135deg, #804a00 0%, #a67c52 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(128, 74, 0, 0.4);
    cursor: pointer;
}

.section-basico .btn-ver-postulacion:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
    box-shadow: 0 15px 25px -5px rgba(128, 74, 0, 0.5);
}